pelican-panel-banquise/database/migrations/2016_01_23_195641_add_allocations_table.php
2024-03-19 21:12:27 -04:00

31 lines
730 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('allocations', function (Blueprint $table) {
$table->increments('id');
$table->mediumInteger('node')->unsigned();
$table->string('ip');
$table->mediumInteger('port')->unsigned();
$table->mediumInteger('assigned_to')->unsigned()->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('allocations');
}
};