2016-01-16 01:26:50 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2016-01-23 21:42:25 +01:00
|
|
|
class AddAllocationsTable extends Migration
|
2016-01-16 01:26:50 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::create('allocations', function (Blueprint $table) {
|
2016-01-16 01:26:50 +01:00
|
|
|
$table->increments('id');
|
2016-01-23 21:42:25 +01:00
|
|
|
$table->mediumInteger('node')->unsigned();
|
|
|
|
$table->string('ip');
|
|
|
|
$table->mediumInteger('port')->unsigned();
|
|
|
|
$table->mediumInteger('assigned_to')->unsigned()->nullable();
|
2016-01-16 01:26:50 +01:00
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
2016-01-23 21:42:25 +01:00
|
|
|
Schema::dropIfExsits('allocations');
|
2016-01-16 01:26:50 +01:00
|
|
|
}
|
|
|
|
}
|