summaryrefslogtreecommitdiff
path: root/db/statusnet_pg.sql
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@status.net>2009-11-18 09:24:01 +0000
committerSarven Capadisli <csarven@status.net>2009-11-18 09:24:01 +0000
commit229958e2208009bd6e709ea712cd5ef0bb86abfb (patch)
tree0dd2fdac4591c3758f2425877c6d0f4868277e1e /db/statusnet_pg.sql
parentc988161c3dcc1bf33c868a12f030e909604abdd1 (diff)
parent158a1ea551770615d06e02d361ac6577967c9202 (diff)
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'db/statusnet_pg.sql')
-rw-r--r--db/statusnet_pg.sql2
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'*/,