This commit is contained in:
root
2025-08-26 16:35:02 +05:30
27 changed files with 135 additions and 4 deletions

View File

@@ -70,7 +70,6 @@ return new class extends Migration
DB::statement($sql);
}
/**
* Reverse the migrations.
*/

View File

@@ -14,6 +14,7 @@ return new class extends Migration
$sql = <<<'SQL'
CREATE TABLE alert_mail_rules (
id BIGINT GENERATED always AS IDENTITY PRIMARY KEY,
plant BIGINT NOT NULL DEFAULT(0),
module TEXT NOT NULL,
@@ -28,6 +29,7 @@ return new class extends Migration
created_by TEXT NOT NULL,
updated_by TEXT NOT NULL
);
SQL;