X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FUser_username.php;fp=classes%2FUser_username.php;h=5f0ef63185208e05163aa5d0bfb2fb8fb2a64f20;hb=3a7261f70a62e28f47b45847c8ab31ff6f441a61;hp=31dc66faeaf041f1b343b91d28a1e8716136bd0d;hpb=b1465a755955133246cb880ba53fbab609dd6221;p=quix0rs-gnu-social.git diff --git a/classes/User_username.php b/classes/User_username.php index 31dc66faea..5f0ef63185 100644 --- a/classes/User_username.php +++ b/classes/User_username.php @@ -19,6 +19,23 @@ class User_username extends Managed_DataObject /* 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 @@ -40,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'); - } }