v12.0.0 - initial commit

This commit is contained in:
padreug 2025-12-31 19:04:13 +01:00
commit e2c49ea43c
1145 changed files with 97211 additions and 0 deletions

View file

@ -0,0 +1,18 @@
const db = require('./db')
const ALTER_TABLE = `
ALTER TABLE machine_groups
ADD COLUMN compliance_trigger_set_id UUID
REFERENCES compliance_trigger_sets (id)
ON DELETE SET NULL
`
const ASSIGN_TRIGGER_SET = `
UPDATE machine_groups
SET compliance_trigger_set_id = trigger_set.id
FROM (SELECT id FROM compliance_trigger_sets LIMIT 1) AS trigger_set
`
exports.up = next => db.runAll([ALTER_TABLE, ASSIGN_TRIGGER_SET], next)
exports.down = next => next()