add queueing variables to confirm_address
darcs-hash:20080706031234-84dde-42e06c969ef6e8a63c527c197d7f074f7346d223.gz
This commit is contained in:
parent
293ad758f7
commit
13ac93481c
@ -15,6 +15,8 @@ class Confirm_address extends DB_DataObject
|
|||||||
public $address; // varchar(255) not_null
|
public $address; // varchar(255) not_null
|
||||||
public $address_extra; // varchar(255) not_null
|
public $address_extra; // varchar(255) not_null
|
||||||
public $address_type; // varchar(8) not_null
|
public $address_type; // varchar(8) not_null
|
||||||
|
public $claimed; // datetime()
|
||||||
|
public $sent; // datetime()
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
/* Static get */
|
/* Static get */
|
||||||
|
@ -22,6 +22,8 @@ user_id = 129
|
|||||||
address = 130
|
address = 130
|
||||||
address_extra = 130
|
address_extra = 130
|
||||||
address_type = 130
|
address_type = 130
|
||||||
|
claimed = 14
|
||||||
|
sent = 14
|
||||||
modified = 384
|
modified = 384
|
||||||
|
|
||||||
[confirm_address__keys]
|
[confirm_address__keys]
|
||||||
|
@ -165,6 +165,8 @@ create table confirm_address (
|
|||||||
address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
|
address varchar(255) not null comment 'address (email, Jabber, SMS, etc.)',
|
||||||
address_extra varchar(255) not null comment 'carrier ID, for SMS',
|
address_extra varchar(255) not null comment 'carrier ID, for SMS',
|
||||||
address_type varchar(8) not null comment 'address type ("email", "jabber", "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'
|
modified timestamp comment 'date this record was modified'
|
||||||
) ENGINE=InnoDB;
|
) ENGINE=InnoDB;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user