fix: 🐛 Typo
This commit is contained in:
parent
642fef6864
commit
f8c33d43be
1 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ class AddCancelationToServersTable extends Migration
|
|||
public function up()
|
||||
{
|
||||
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()
|
||||
{
|
||||
Schema::table('servers', function (Blueprint $table) {
|
||||
$table->dropColumn('canceled');
|
||||
$table->dropColumn('cancelled');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue