diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-23 15:10:15 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-23 15:10:15 -0400 |
commit | ba0dd0a4c3339c88a0d2be88c70759e9aec717db (patch) | |
tree | 3debaaf17739e0908462064c62cf20af350c4f0d /db | |
parent | ec3c9362342917cb6562974805dad20782db8093 (diff) |
data classes for invitations
darcs-hash:20080823191015-84dde-05263d6e9a2535c726b98aacc5f3269f66fe22bd.gz
Diffstat (limited to 'db')
-rw-r--r-- | db/laconica.sql | 12 |
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 |