dropColumn("schema"); $table->dropColumn("_file"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('revisions', function (Blueprint $table) { $table->string('schema'); $table->jsonb('_file'); }); } };