Missing quotes in postgres db create script

This commit is contained in:
Ciaran Gultnieks 2009-11-18 08:25:58 +00:00
parent 7dfce35bea
commit 904baf4d27
1 changed files with 1 additions and 1 deletions

View 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'*/,