summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch-group-table.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/old_migrations/patch-group-table.sql')
-rw-r--r--db/old_migrations/patch-group-table.sql30
1 files changed, 30 insertions, 0 deletions
diff --git a/db/old_migrations/patch-group-table.sql b/db/old_migrations/patch-group-table.sql
new file mode 100644
index 0000000..1c6f366
--- /dev/null
+++ b/db/old_migrations/patch-group-table.sql
@@ -0,0 +1,30 @@
+-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
+BEGIN TRANSACTION;
+
+create table `group`
+(
+ id INTEGER not null
+ constraint group_pk
+ primary key autoincrement,
+ name VARCHAR(255) not null,
+ created_date DATETIME default (DATETIME('now')) not null,
+ public BOOLEAN default 0 not null,
+ active BOOLEAN default 1 not null,
+ weight BOOLEAN NOT NULL DEFAULT 1000
+);
+
+CREATE TABLE [monitor_group]
+(
+ [id] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
+ [monitor_id] INTEGER NOT NULL REFERENCES [monitor] ([id]) ON DELETE CASCADE ON UPDATE CASCADE,
+ [group_id] INTEGER NOT NULL REFERENCES [group] ([id]) ON DELETE CASCADE ON UPDATE CASCADE,
+ weight BOOLEAN NOT NULL DEFAULT 1000
+);
+
+CREATE INDEX [fk]
+ ON [monitor_group] (
+ [monitor_id],
+ [group_id]);
+
+
+COMMIT;