add queueing variables to confirm_address

darcs-hash:20080706031234-84dde-42e06c969ef6e8a63c527c197d7f074f7346d223.gz
This commit is contained in:
Evan Prodromou
2008-07-05 23:12:34 -04:00
parent 293ad758f7
commit 13ac93481c
3 changed files with 6 additions and 0 deletions

View File

@@ -165,6 +165,8 @@ create table confirm_address (
address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
address_extra varchar(255) not null comment 'carrier ID, for SMS',
address_type varchar(8) not null comment 'address type ("email", "jabber", "sms")',
claimed datetime comment 'date this was claimed for queueing',
sent datetime comment 'date this was sent for queueing',
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB;