Comment out migration's down method to match its up method

This commit is contained in:
Marcus Moore 2023-01-10 17:20:20 -08:00
parent 39ab545cf5
commit 4ee3cbf60e
No known key found for this signature in database

View file

@ -105,10 +105,10 @@
*/ */
public function down() public function down()
{ {
Schema::table('asset_logs', function (Blueprint $table) { // Schema::table('asset_logs', function (Blueprint $table) {
$table->dropIndex('thread_id'); // $table->dropIndex('thread_id');
$table->dropColumn('thread_id'); // $table->dropColumn('thread_id');
}); // });
} }
/** /**