2017-08-06 02:10:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class SetAllocationUnqiueUsingMultipleFields extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function up(): void
|
2017-08-06 02:10:32 +00:00
|
|
|
{
|
|
|
|
Schema::table('allocations', function (Blueprint $table) {
|
|
|
|
$table->unique(['node_id', 'ip', 'port']);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 20:29:04 +00:00
|
|
|
public function down(): void
|
2017-08-06 02:10:32 +00:00
|
|
|
{
|
|
|
|
Schema::table('allocations', function (Blueprint $table) {
|
2017-08-23 19:34:34 +00:00
|
|
|
$table->dropForeign(['node_id']);
|
2017-08-06 02:10:32 +00:00
|
|
|
$table->dropUnique(['node_id', 'ip', 'port']);
|
2017-08-23 19:34:34 +00:00
|
|
|
$table->foreign('node_id')->references('id')->on('nodes');
|
2017-08-06 02:10:32 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|