Merge branch 'develop' of https://gitlab.com/witelgroup/rms_v2 into feature/AddMachineAndRahdarToRoadPatrol

This commit is contained in:
2024-12-25 14:19:21 +03:30
4 changed files with 36 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
<?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
{
Schema::table('azmayeshes', function (Blueprint $table) {
$table->foreignId('contract_subitem_id')->nullable()->constrained('contract_subitems')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('azmayeshes', function (Blueprint $table) {
$table->dropForeign('contract_subitem_id');
$table->dropColumn(['contract_subitem_id']);
});
}
};