ranjith-dev #642

Merged
jothi merged 6 commits from ranjith-dev into master 2026-05-25 09:34:47 +00:00
Showing only changes of commit 6fd005acf9 - Show all commits

View File

@@ -0,0 +1,47 @@
<?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
{
$sql = <<<'SQL'
CREATE TABLE asrs_item_validations (
id BIGINT GENERATED always AS IDENTITY PRIMARY KEY,
plant_id BIGINT NOT NULL,
item_code TEXT DEFAULT NULL,
item_description TEXT DEFAULT NULL,
uom TEXT DEFAULT NULL,
mhe TEXT DEFAULT NULL,
bin_quantity TEXT DEFAULT NULL,
asrs TEXT DEFAULT NULL,
asrs_category TEXT DEFAULT NULL,
status TEXT DEFAULT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
created_by TEXT DEFAULT NULL,
updated_by TEXT DEFAULT NULL,
deleted_at TIMESTAMP,
FOREIGN KEY (plant_id) REFERENCES plants (id)
);
SQL;
DB::statement($sql);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('asrs_item_validations');
}
};