X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FOauth_token_association.php;h=83bc0d80541fe2b9dbd0b3fa047d59156e73a7e2;hb=325199b5e68f413e96eabc7a293089f5c748e9ce;hp=06c9fee1c3da5c7fc5cb7760e64e3385cff4a97f;hpb=87d46e1ae5e5effcc985021ff5af3f10815f3d3c;p=quix0rs-gnu-social.git diff --git a/classes/Oauth_token_association.php b/classes/Oauth_token_association.php index 06c9fee1c3..83bc0d8054 100644 --- a/classes/Oauth_token_association.php +++ b/classes/Oauth_token_association.php @@ -4,7 +4,7 @@ */ require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; -class Oauth_token_association extends Memcached_DataObject +class Oauth_token_association extends Managed_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -12,14 +12,10 @@ class Oauth_token_association extends Memcached_DataObject public $__table = 'oauth_token_association'; // table name public $profile_id; // int(4) primary_key not_null public $application_id; // int(4) primary_key not_null - public $token; // varchar(255) primary key not null + public $token; // varchar(191) primary key not null not 255 because utf8mb4 takes more space public $created; // datetime not_null public $modified; // timestamp not_null default_CURRENT_TIMESTAMP - /* Static get */ - function staticGet($k, $v = NULL) { - return Memcached_DataObject::staticGet('oauth_token_association', $k, $v); - } /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE @@ -47,7 +43,7 @@ class Oauth_token_association extends Memcached_DataObject 'fields' => array( 'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'associated user'), 'application_id' => array('type' => 'int', 'not null' => true, 'description' => 'the application'), - 'token' => array('type' => 'varchar', 'length' => '255', 'not null' => true, 'description' => 'token used for this association'), + 'token' => array('type' => 'varchar', 'length' => '191', 'not null' => true, 'description' => 'token used for this association'), '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'), ),