1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-28 04:42:29 +01:00
Pterodactyl-Panel/database/migrations/2016_01_23_195641_add_allocations_table.php

35 lines
780 B
PHP
Raw Normal View History

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
}
}