Added migration file for allowing null value in shift_id column in table production plans #355

Merged
jothi merged 1 commits from ranjith-dev into master 2026-02-19 07:03:07 +00:00

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
{
DB::statement("
ALTER TABLE production_plans
ALTER COLUMN shift_id DROP NOT NULL
");
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('production_plans', function (Blueprint $table) {
// //
// });
}
};