浏览代码

fix: 🐛 missed one line for typo fix

IceToast 2 年之前
父节点
当前提交
e03ac5dae0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      database/migrations/2023_05_08_234527_add_cancelation_to_servers_table.php

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