Merge branch 'master' of ssh://172.31.31.31:2222/poc/pds

This commit is contained in:
dhanabalan
2025-08-26 18:01:43 +05:30
2 changed files with 12 additions and 11 deletions

View File

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

View File

@@ -19,7 +19,7 @@ Artisan::command('inspire', function () {
$productionRules = AlertMailRule::where('module', 'ProductionQuantities') $productionRules = AlertMailRule::where('module', 'ProductionQuantities')
->where('rule_name', 'ProductionMail') ->where('rule_name', 'ProductionMail')
//->select('plant', 'schedule_type') ->select('plant', 'schedule_type')
->select('plant', 'schedule_type') ->select('plant', 'schedule_type')
->distinct() ->distinct()
->get(); ->get();