add sms email address to user
darcs-hash:20080721035919-84dde-e06f9094902522d2cd0ad71d65d565293f19db4a.gz
This commit is contained in:
parent
a439f49866
commit
3345f54186
|
@ -44,6 +44,7 @@ class User extends DB_DataObject
|
||||||
public $sms; // varchar(64) unique_key
|
public $sms; // varchar(64) unique_key
|
||||||
public $carrier; // int(4)
|
public $carrier; // int(4)
|
||||||
public $smsnotify; // tinyint(1)
|
public $smsnotify; // tinyint(1)
|
||||||
|
public $smsemail; // varchar(255)
|
||||||
public $uri; // varchar(255) unique_key
|
public $uri; // varchar(255) unique_key
|
||||||
public $autosubscribe; // tinyint(1)
|
public $autosubscribe; // tinyint(1)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
|
|
|
@ -168,6 +168,7 @@ updatefrompresence = 17
|
||||||
sms = 2
|
sms = 2
|
||||||
carrier = 1
|
carrier = 1
|
||||||
smsnotify = 17
|
smsnotify = 17
|
||||||
|
smsemail = 2
|
||||||
uri = 2
|
uri = 2
|
||||||
autosubscribe = 17
|
autosubscribe = 17
|
||||||
created = 142
|
created = 142
|
||||||
|
|
|
@ -55,6 +55,7 @@ create table user (
|
||||||
sms varchar(64) unique key comment 'sms phone number',
|
sms varchar(64) unique key comment 'sms phone number',
|
||||||
carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
|
carrier integer comment 'foreign key to sms_carrier' references sms_carrier (id),
|
||||||
smsnotify tinyint default 0 comment 'whether to send notices to SMS',
|
smsnotify tinyint default 0 comment 'whether to send notices to SMS',
|
||||||
|
smsemail varchar(255) comment 'built from sms and carrier',
|
||||||
uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
|
uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
|
||||||
autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
|
autosubscribe tinyint default 0 comment 'automatically subscribe to users who subscribe to us',
|
||||||
created datetime not null comment 'date this record was created',
|
created datetime not null comment 'date this record was created',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user