summaryrefslogtreecommitdiff
path: root/db/laconica.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-08-23 15:10:15 -0400
committerEvan Prodromou <evan@prodromou.name>2008-08-23 15:10:15 -0400
commitba0dd0a4c3339c88a0d2be88c70759e9aec717db (patch)
tree3debaaf17739e0908462064c62cf20af350c4f0d /db/laconica.sql
parentec3c9362342917cb6562974805dad20782db8093 (diff)
data classes for invitations
darcs-hash:20080823191015-84dde-05263d6e9a2535c726b98aacc5f3269f66fe22bd.gz
Diffstat (limited to 'db/laconica.sql')
-rw-r--r--db/laconica.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index c90a33d35..52d52cd75 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -287,3 +287,15 @@ create table foreign_subscription (
index foreign_subscription_subscriber_idx (subscriber),
index foreign_subscription_subscribed_idx (subscribed)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+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")',
+
+ index invitation_address_idx (address, address_type),
+ index invitation_user_id_idx (user_id)
+) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_bin;
+
+ \ No newline at end of file