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