mirror of
https://github.com/koichixD/uptime-kuma.git
synced 2026-09-04 17:23:21 +00:00
7 lines
137 B
SQL
7 lines
137 B
SQL
BEGIN TRANSACTION;
|
|
|
|
ALTER TABLE monitor
|
|
ADD parent INTEGER REFERENCES [monitor] ([id]) ON DELETE SET NULL ON UPDATE CASCADE;
|
|
|
|
COMMIT
|