data classes allow >140 bios in profiles
This commit is contained in:
parent
2d6039fb69
commit
fa6b49ab38
|
@ -35,14 +35,13 @@ class Profile extends Memcached_DataObject
|
||||||
public $fullname; // varchar(255) multiple_key
|
public $fullname; // varchar(255) multiple_key
|
||||||
public $profileurl; // varchar(255)
|
public $profileurl; // varchar(255)
|
||||||
public $homepage; // varchar(255) multiple_key
|
public $homepage; // varchar(255) multiple_key
|
||||||
public $bio; // varchar(140) multiple_key
|
public $bio; // text() multiple_key
|
||||||
public $location; // varchar(255) multiple_key
|
public $location; // varchar(255) multiple_key
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
/* Static get */
|
/* Static get */
|
||||||
function staticGet($k,$v=null)
|
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Profile',$k,$v); }
|
||||||
{ return Memcached_DataObject::staticGet('Profile',$k,$v); }
|
|
||||||
|
|
||||||
/* the code above is auto generated do not remove the tag below */
|
/* the code above is auto generated do not remove the tag below */
|
||||||
###END_AUTOCODE
|
###END_AUTOCODE
|
||||||
|
|
|
@ -314,7 +314,7 @@ nickname = 130
|
||||||
fullname = 2
|
fullname = 2
|
||||||
profileurl = 2
|
profileurl = 2
|
||||||
homepage = 2
|
homepage = 2
|
||||||
bio = 2
|
bio = 34
|
||||||
location = 2
|
location = 2
|
||||||
created = 142
|
created = 142
|
||||||
modified = 384
|
modified = 384
|
||||||
|
|
Loading…
Reference in New Issue
Block a user