Add migration for new columns (marked, stopped, and winded related) in class_characteristics table
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 26s

This commit is contained in:
dhanabalan
2026-08-23 19:56:05 +05:30
parent 2e1f04086b
commit a6739ddc66

View File

@@ -0,0 +1,71 @@
<?php
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$sql1 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN motor_marked_datetime TIMESTAMP DEFAULT NULL
SQL;
DB::statement($sql1);
$sql2 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN pump_marked_datetime TIMESTAMP DEFAULT NULL
SQL;
DB::statement($sql2);
$sql3 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN name_plate_marked_datetime TIMESTAMP DEFAULT NULL
SQL;
DB::statement($sql3);
$sql4 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN winded_rework_status TEXT DEFAULT '0'
SQL;
DB::statement($sql4);
$sql5 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN is_stopped TEXT DEFAULT '0'
SQL;
DB::statement($sql5);
$sql6 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN stopped_datetime TIMESTAMP DEFAULT NULL
SQL;
DB::statement($sql6);
$sql7 = <<<'SQL'
ALTER TABLE class_characteristics
ADD COLUMN stopped_by TEXT DEFAULT NULL
SQL;
DB::statement($sql7);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('class_characteristics', function (Blueprint $table) {
// //
// });
}
};