2023-09-09 17:28:53 +01:00
|
|
|
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
|
2023-01-28 01:58:03 +00:00
|
|
|
BEGIN TRANSACTION;
|
|
|
|
|
|
|
|
ALTER TABLE monitor
|
|
|
|
ADD parent INTEGER REFERENCES [monitor] ([id]) ON DELETE SET NULL ON UPDATE CASCADE;
|
|
|
|
|
2023-09-09 17:28:53 +01:00
|
|
|
COMMIT;
|