CC-3921: Add mobile phone number field to user record

-done
This commit is contained in:
denise 2012-06-13 13:39:54 -04:00
parent 3f0a06ee2b
commit 9cabd4d32c
10 changed files with 119 additions and 19 deletions

View file

@ -49,6 +49,7 @@ class CcSubjsTableMap extends TableMap {
$this->addColumn('SKYPE_CONTACT', 'DbSkypeContact', 'VARCHAR', false, 255, null);
$this->addColumn('JABBER_CONTACT', 'DbJabberContact', 'VARCHAR', false, 255, null);
$this->addColumn('EMAIL', 'DbEmail', 'VARCHAR', false, 255, null);
$this->addColumn('CELL_PHONE', 'DbCellPhone', 'VARCHAR', false, 255, null);
$this->addColumn('LOGIN_ATTEMPTS', 'DbLoginAttempts', 'INTEGER', false, null, 0);
// validators
} // initialize()