Ver código fonte

fix: 🐛 missed one line for typo fix

IceToast 2 anos atrás
pai
commit
e03ac5dae0

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