From: Ciaran Gultnieks Date: Wed, 18 Nov 2009 08:25:58 +0000 (+0000) Subject: Missing quotes in postgres db create script X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=904baf4d27fa9490938f3e355c0fd43c3deeef7e;p=quix0rs-gnu-social.git Missing quotes in postgres db create script --- diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index 7b0e5313ce..d4b7b66144 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'*/,