diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-25 22:31:16 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-25 22:31:16 -0400 |
commit | 3d48ae94e61626b0a4d0c474ca1ff1fb355346d4 (patch) | |
tree | 71353188482607eeb500fa77f812b307359ddb97 /db/laconica.sql | |
parent | 19614f33a4dc3758f5453cc91a4e3e8ae19d3878 (diff) |
added a created timestamp to invitations
darcs-hash:20080826023116-84dde-7d80c624b2dcfa637f58509c1d5ff7eca371512c.gz
Diffstat (limited to 'db/laconica.sql')
-rw-r--r-- | db/laconica.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/laconica.sql b/db/laconica.sql index 52d52cd75..613cc5820 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -293,6 +293,7 @@ create table 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 datetime not null comment 'date this record was created', index invitation_address_idx (address, address_type), index invitation_user_id_idx (user_id) |