Added migration file of invoice data validations

This commit is contained in:
dhanabalan
2025-10-31 17:34:55 +05:30
parent 0845b90985
commit 1b68572a82

View File

@@ -0,0 +1,45 @@
<?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 invoice_data_validations (
id BIGINT GENERATED always AS IDENTITY PRIMARY KEY,
plant_id BIGINT NOT NULL,
distribution_channel_desc TEXT DEFAULT NULL,
customer_code TEXT DEFAULT NULL,
document_number TEXT DEFAULT NULL,
document_date DATE DEFAULT NULL,
customer_trade_name TEXT DEFAULT NULL,
customer_location 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('invoice_data_validations');
}
};