fix: 🐛 missed one line for typo fix

This commit is contained in:
IceToast 2023-06-08 20:23:06 +02:00
parent e8a6adb4e6
commit e03ac5dae0

View file

@ -22,7 +22,7 @@ class AddCancelationToServersTable extends Migration
}
Schema::table('servers', function (Blueprint $table) {
$table->dateTime('cancelled')->nullable();
$table->dateTime('canceled')->nullable();
});
}