summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2017-08-14 18:19:20 +0200
committerYorhel <git@yorhel.nl>2017-08-14 18:22:45 +0200
commit05077a1c55f01272e613fbc450c3381b5c814d82 (patch)
treef62acc28642c30771e00dafb2187fca7471c7d05
parent174926461a166edea69bce03257c1946658efc20 (diff)
Remove useless NOT NULL in schema.sql
-rw-r--r--util/sql/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql/schema.sql b/util/sql/schema.sql
index ca234d49..4cddf7e7 100644
--- a/util/sql/schema.sql
+++ b/util/sql/schema.sql
@@ -165,7 +165,7 @@ CREATE TABLE login_throttle (
-- notifications
CREATE TABLE notifications (
- id serial PRIMARY KEY NOT NULL,
+ id serial PRIMARY KEY,
uid integer NOT NULL,
date timestamptz NOT NULL DEFAULT NOW(),
read timestamptz,