From e03ac5dae0097b999104450bf8751ca904cf2d2a Mon Sep 17 00:00:00 2001 From: IceToast Date: Thu, 8 Jun 2023 20:23:06 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20missed=20one=20line=20for?= =?UTF-8?q?=20typo=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2023_05_08_234527_add_cancelation_to_servers_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php b/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php index b26b19cc..94efae37 100644 --- a/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php +++ b/database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php @@ -22,7 +22,7 @@ class AddCancelationToServersTable extends Migration } Schema::table('servers', function (Blueprint $table) { - $table->dateTime('cancelled')->nullable(); + $table->dateTime('canceled')->nullable(); }); }