summaryrefslogtreecommitdiff
path: root/db/0-create.psql
diff options
context:
space:
mode:
Diffstat (limited to 'db/0-create.psql')
-rw-r--r--db/0-create.psql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/0-create.psql b/db/0-create.psql
index 3a8f1c4..aea6d63 100644
--- a/db/0-create.psql
+++ b/db/0-create.psql
@@ -10,7 +10,7 @@ CREATE TABLE users (
avatar text NOT NULL DEFAULT '',
contact text NOT NULL DEFAULT '',
bio text NOT NULL DEFAULT '',
- is_bot NOT NULL DEFAULT false,
+ is_bot boolean NOT NULL DEFAULT false,
profile_bg text
);
CREATE INDEX users_nick_lowercase_idx ON users (lower(nick));