aboutsummaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
Diffstat (limited to 'schema')
-rw-r--r--schema/20181116.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/20181116.sql b/schema/20181116.sql
index 48baa8f..fcf14b8 100644
--- a/schema/20181116.sql
+++ b/schema/20181116.sql
@@ -49,7 +49,7 @@ CREATE TABLE checks (
CREATE TABLE notifications (
id bigserial NOT NULL primary key,
- check_id bigint not null unique references checks(id) on delete cascade,
+ check_id bigint not null references checks(id) on delete cascade,
states integer[] not null,
output text,
inserted timestamp with time zone DEFAULT now() NOT NULL,