1
0
forked from poc/pds

added plant column in alert mail rules migration file

This commit is contained in:
dhanabalan
2025-07-10 15:06:02 +05:30
parent 752c3cb0da
commit 3c9cc702d4

View File

@@ -0,0 +1,33 @@
<?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
{
$sql1 = <<<'SQL'
ALTER TABLE alert_mail_rules
ADD plant BIGINT NOT NULL DEFAULT (0);
SQL;
DB::statement($sql1);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Schema::table('alert_mail_rules', function (Blueprint $table) {
// //
// });
}
};