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