]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Missing quotes in postgres db create script
authorCiaran Gultnieks <ciaran@ciarang.com>
Wed, 18 Nov 2009 08:25:58 +0000 (08:25 +0000)
committerCiaran Gultnieks <ciaran@ciarang.com>
Wed, 18 Nov 2009 08:25:58 +0000 (08:25 +0000)
db/statusnet_pg.sql

index 7b0e5313ceac86560de1953612a772180c7e038a..d4b7b661449f135e9fb2d82e541471e03e0dbd4a 100644 (file)
@@ -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'*/,