X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FUser_username.php;h=5f0ef63185208e05163aa5d0bfb2fb8fb2a64f20;hb=a9c4bcd71f0ce046bd57ea727c140c6e91fcd013;hp=652e7bd14125bee483b9d1aae4a6795e587d0e3a;hpb=7a9777df053a9007b5eaa71f5437584065b615a5;p=quix0rs-gnu-social.git diff --git a/classes/User_username.php b/classes/User_username.php index 652e7bd141..5f0ef63185 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -16,15 +16,26 @@ class User_username extends Managed_DataObject public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP - /* Static get */ - function staticGet($k,$v=null) - { - return Memcached_DataObject::staticGet('User_username',$k,$v); - } - /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + public static function schemaDef() + { + return array( + 'fields' => array( + 'provider_name' => array('type' => 'varchar', 'length' => 255, 'description' => 'provider name'), + 'username' => array('type' => 'varchar', 'length' => 255, 'description' => 'username'), + 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'notice id this title relates to'), + 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), + 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'), + ), + 'primary key' => array('provider_name', 'username'), + 'foreign keys' => array( + 'user_username_user_id_fkey' => array('user', array('user_id' => 'id')), + ), + ); + } + /** * Register a user with a username on a given provider * @param User User object @@ -46,18 +57,4 @@ class User_username extends Managed_DataObject return false; } } - - function table() { - return array( - 'user_id' => DB_DATAOBJECT_INT, - 'username' => DB_DATAOBJECT_STR, - 'provider_name' => DB_DATAOBJECT_STR , - 'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME - ); - } - - // now define the keys. - function keys() { - return array('provider_name' => 'K', 'username' => 'K'); - } }