From f8c33d43befbde99866b9bdb4a290661ad91d4e6 Mon Sep 17 00:00:00 2001 From: IceToast Date: Fri, 22 Jul 2022 03:51:05 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022_07_21_234527_add_cancelation_to_servers_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2022_07_21_234527_add_cancelation_to_servers_table.php b/database/migrations/2022_07_21_234527_add_cancelation_to_servers_table.php index b9f75839..15fafb16 100644 --- a/database/migrations/2022_07_21_234527_add_cancelation_to_servers_table.php +++ b/database/migrations/2022_07_21_234527_add_cancelation_to_servers_table.php @@ -14,7 +14,7 @@ class AddCancelationToServersTable extends Migration public function up() { Schema::table('servers', function (Blueprint $table) { - $table->boolean('canceled')->default(false); + $table->dateTime('cancelled')->nullable(); }); } @@ -26,7 +26,7 @@ class AddCancelationToServersTable extends Migration public function down() { Schema::table('servers', function (Blueprint $table) { - $table->dropColumn('canceled'); + $table->dropColumn('cancelled'); }); } }