diff options
| author | tim b <timb@camcompu.home> | 2010-05-24 19:13:05 -0700 |
|---|---|---|
| committer | tim b <timb@camcompu.home> | 2010-05-24 19:13:05 -0700 |
| commit | 64be2d5bfde815751bc152d0b49798865adbaf28 (patch) | |
| tree | b9ade3079e25878ed1a0b429c545ee75b91199f9 /db | |
| parent | ef694d163341b2a1dd7840bd50b1c210c4fab3be (diff) | |
add type to column
Diffstat (limited to 'db')
| -rw-r--r-- | db/0-create.psql | 2 |
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)); |
