summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorCiaranG <ciaran@ciarang.com>2008-09-23 17:46:01 -0400
committerCiaranG <ciaran@ciarang.com>2008-09-23 17:46:01 -0400
commitcfc8a47bf11d4427d0a06d746691cfc92c696837 (patch)
treebf11dbba69d2042631ed003fa2a19184a02b2393 /db
parent2b963df0e58ddc340efed381692a34338b68ad07 (diff)
PostgreSQL: New tables for private messages and invitations (untested)
darcs-hash:20080923214601-f6e2c-350de6e8df8bb6e9e5f3dbb1ea43360fc55ee847.gz
Diffstat (limited to 'db')
-rw-r--r--db/laconica_pg.sql29
1 files changed, 29 insertions, 0 deletions
diff --git a/db/laconica_pg.sql b/db/laconica_pg.sql
index ff11219d5..b7ef57d27 100644
--- a/db/laconica_pg.sql
+++ b/db/laconica_pg.sql
@@ -288,6 +288,35 @@ create table foreign_subscription (
create index foreign_subscription_subscriber_idx on foreign_subscription using btree(subscriber);
create index foreign_subscription_subscribed_idx on foreign_subscription using btree(subscribed);
+create table invitation (
+ code varchar(32) not null primary key /* comment 'random code for an invitation' */,
+ user_id int not null /* comment 'who sent the invitation' */ references user (id),
+ address varchar(255) not null /* comment 'invitation sent to' */,
+ address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms") '*/,
+ created timestamp not null /* comment 'date this record was created' */
+
+);
+create index invitation_address_idx on invitation using btree(address,address_type);
+create index invitation_user_id_idx on invitation using btree(user_id);
+
+create table message (
+
+ id serial primary key /* comment 'unique identifier' */,
+ uri varchar(255) unique key /* comment 'universally unique identifier' */,
+ from_profile integer not null /* comment 'who the message is from' */ references profile (id),
+ to_profile integer not null /* comment 'who the message is to' */ references profile (id),
+ content varchar(140) /* comment 'message content' */,
+ rendered text /* comment 'HTML version of the content' */,
+ url varchar(255) /* comment 'URL of any attachment (image, video, bookmark, whatever)' */,
+ created timestamp not null /* comment 'date this record was created' */,
+ modified timestamp /* comment 'date this record was modified' */,
+ source varchar(32) /* comment 'source of comment, like "web", "im", or "clientname"' */
+
+);
+create index message_from_idx on message using btree(from_profile);
+create index message_to_idx on message using btree(to_profile);
+create index message_created_idx on message using btree(created);
+
/* Textsearch stuff */
create index textsearch_idx on profile using gist(textsearch);