1
0
forked from poc/pds

Added migration to create work_group_master_id foreign key and plant with work_center unique constraint for machines table

This commit is contained in:
dhanabalan
2025-09-15 12:14:25 +05:30
parent 6a195d00c5
commit 5ba9db0278

View File

@@ -0,0 +1,40 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$sql1 = <<<'SQL'
ALTER TABLE machines
ADD COLUMN work_group_master_id BIGINT NOT NULL,
ADD CONSTRAINT machines_work_group_master_id_fkey
FOREIGN KEY (work_group_master_id) REFERENCES work_group_masters(id);
SQL;
DB::statement($sql1);
$sql2 = <<<'SQL'
ALTER TABLE machines
ADD UNIQUE (plant_id, work_center);
SQL;
DB::statement($sql2);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('machines', function (Blueprint $table) {
// //
// });
}
};