From 2ef73fa0efffde8fdc73895cb5249e158b4f41a0 Mon Sep 17 00:00:00 2001 From: Jay <73784120+Obi-Wana@users.noreply.github.com> Date: Wed, 24 Jul 2024 17:18:32 +0000 Subject: [PATCH] Remove down() migration --- .../migrations/2024_07_23_153202_add_poll_expiry.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/database/migrations/2024_07_23_153202_add_poll_expiry.php b/database/migrations/2024_07_23_153202_add_poll_expiry.php index 5bc878c5e..71c0c7aec 100644 --- a/database/migrations/2024_07_23_153202_add_poll_expiry.php +++ b/database/migrations/2024_07_23_153202_add_poll_expiry.php @@ -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'); - }); - } };