fix: 🐛 Typo

This commit is contained in:
IceToast 2022-07-22 03:51:05 +02:00
parent e207c0c550
commit 32384044ea

View file

@ -14,7 +14,7 @@ class AddCancelationToServersTable extends Migration
public function up() public function up()
{ {
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
$table->boolean('canceled')->default(false); $table->dateTime('cancelled')->nullable();
}); });
} }
@ -26,7 +26,7 @@ class AddCancelationToServersTable extends Migration
public function down() public function down()
{ {
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
$table->dropColumn('canceled'); $table->dropColumn('cancelled');
}); });
} }
} }