Remove down() migration

This commit is contained in:
Jay
2024-07-24 17:18:32 +00:00
committed by GitHub
parent 6894cca148
commit 2ef73fa0ef

View File

@@ -28,14 +28,4 @@ return new class () extends Migration {
$table->dateTime('expires_at')->nullable()->after('multiple_choice');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('polls', function (Blueprint $table): void {
$table->dropColumn('expires_at');
});
}
};