add drop column

This commit is contained in:
2023-07-16 20:11:24 +10:00
parent 469a646ae3
commit 440d66322c

View File

@@ -22,7 +22,7 @@ return new class extends Migration
public function down(): void public function down(): void
{ {
Schema::table('shortlinks', function (Blueprint $table) { Schema::table('shortlinks', function (Blueprint $table) {
// $table->dropColumn('used');
}); });
} }
}; };