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'); - }); - } };