diff options
author | Ciaran Gultnieks <ciaran@ciarang.com> | 2009-11-18 08:25:58 +0000 |
---|---|---|
committer | Ciaran Gultnieks <ciaran@ciarang.com> | 2009-11-18 08:25:58 +0000 |
commit | 904baf4d27fa9490938f3e355c0fd43c3deeef7e (patch) | |
tree | 3269f04b0f9cb56f107ea649e8916d84bb386d81 /db | |
parent | 7dfce35bea3e9476358048083ed469b2674b41a4 (diff) |
Missing quotes in postgres db create script
Diffstat (limited to 'db')
-rw-r--r-- | db/statusnet_pg.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 7b0e5313c..d4b7b6614 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -571,7 +571,7 @@ create table user_role ( ); create table login_token ( - user_id integer not null /* comment 'user owning this token'*/ references user (id), + user_id integer not null /* comment 'user owning this token'*/ references "user" (id), token char(32) not null /* comment 'token useable for logging in'*/, created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/, modified timestamp /* comment 'date this record was modified'*/, |