]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
PostgreSQL: Corrections to the two new table definitions
authorCiaranG <ciaran@ciarang.com>
Wed, 24 Sep 2008 11:35:50 +0000 (07:35 -0400)
committerCiaranG <ciaran@ciarang.com>
Wed, 24 Sep 2008 11:35:50 +0000 (07:35 -0400)
darcs-hash:20080924113550-f6e2c-8791d68684424ef028049ee9ed95b3853dd8f770.gz

db/laconica_pg.sql

index b7ef57d27f84ef72816a97315908e26a734a38b6..24ba0a99ab9f781ab910052a48b5a1e748d54d44 100644 (file)
@@ -290,7 +290,7 @@ create index foreign_subscription_subscribed_idx on foreign_subscription using b
 \r
 create table invitation (\r
      code varchar(32) not null primary key /* comment 'random code for an invitation' */,\r
-     user_id int not null /* comment 'who sent the invitation' */ references user (id),\r
+     user_id int not null /* comment 'who sent the invitation' */ references "user" (id),\r
      address varchar(255) not null /* comment 'invitation sent to' */,\r
      address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms") '*/,\r
      created timestamp not null /* comment 'date this record was created' */\r
@@ -302,7 +302,7 @@ create index invitation_user_id_idx on invitation using btree(user_id);
 create table message (\r
 \r
     id serial primary key /* comment 'unique identifier' */,\r
-    uri varchar(255) unique key /* comment 'universally unique identifier' */,\r
+    uri varchar(255) unique /* comment 'universally unique identifier' */,\r
     from_profile integer not null /* comment 'who the message is from' */ references profile (id),\r
     to_profile integer not null /* comment 'who the message is to' */ references profile (id),\r
     content varchar(140) /* comment 'message content' */,\r