Skip to content

Commit fd8b718

Browse files
committed
Merge migrations
1 parent b72a770 commit fd8b718

File tree

2 files changed

+1
-32
lines changed

2 files changed

+1
-32
lines changed

database/migrations/2020_04_04_131016_add_table_server_transfers.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public function up()
1818
Schema::create('server_transfers', function (Blueprint $table) {
1919
$table->increments('id');
2020
$table->integer('server_id')->unsigned();
21+
$table->tinyInteger('successful')->unsigned()->default(0);
2122
$table->integer('old_node')->unsigned();
2223
$table->integer('new_node')->unsigned();
2324
$table->integer('old_allocation')->unsigned();

database/migrations/2020_04_04_172331_add_successful_column_to_server_transfers.php

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)