table('posts', function (Blueprint $table) { $table->text('post_text_parsed') ->nullable(); }); } /** * Reverse the migrations. * @return void */ public function down() { $schema = DB::getSchemaBuilder(); $schema->table('posts', function (Blueprint $table) { $table->dropColumn('post_text_parsed'); }); } }