X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FUser_openid.php;h=ad68f74024770dc7eaccf3f3c22dff9a163202db;hb=d1660b3c4d50973bb578912880af2e7cca78ee93;hp=9811879ecef7e4a880b83ac5c916f08580af3893;hpb=c02a01914ab67c2bc25850034a75ee1046fd6870;p=quix0rs-gnu-social.git diff --git a/classes/User_openid.php b/classes/User_openid.php index 9811879ece..ad68f74024 100644 --- a/classes/User_openid.php +++ b/classes/User_openid.php @@ -2,21 +2,22 @@ /** * Table Definition for user_openid */ -require_once 'DB/DataObject.php'; +require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class User_openid extends DB_DataObject +class User_openid extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ public $__table = 'user_openid'; // table name - public $url; // varchar(255) primary_key not_null - public $user_id; // int(4) unique_key not_null + public $canonical; // varchar(255) primary_key not_null + public $display; // varchar(255) unique_key not_null + public $user_id; // int(4) not_null public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP /* Static get */ - function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('User_openid',$k,$v); } + function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_openid',$k,$v); } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE