data classes allow >140 bios in profiles

This commit is contained in:
Evan Prodromou 2009-08-20 17:09:04 -04:00
parent 2d6039fb69
commit fa6b49ab38
2 changed files with 3 additions and 4 deletions

View File

@ -35,14 +35,13 @@ class Profile extends Memcached_DataObject
public $fullname; // varchar(255) multiple_key
public $profileurl; // varchar(255)
public $homepage; // varchar(255) multiple_key
public $bio; // varchar(140) multiple_key
public $bio; // text() multiple_key
public $location; // varchar(255) multiple_key
public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=null)
{ return Memcached_DataObject::staticGet('Profile',$k,$v); }
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Profile',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE

View File

@ -314,7 +314,7 @@ nickname = 130
fullname = 2
profileurl = 2
homepage = 2
bio = 2
bio = 34
location = 2
created = 142
modified = 384