forked from GNUsocial/gnu-social
update data classes for TEXT content in notice
This commit is contained in:
parent
d94a4eae8a
commit
d213a8cf90
@ -44,7 +44,7 @@ class Notice extends Memcached_DataObject
|
|||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $profile_id; // int(4) not_null
|
public $profile_id; // int(4) not_null
|
||||||
public $uri; // varchar(255) unique_key
|
public $uri; // varchar(255) unique_key
|
||||||
public $content; // varchar(140)
|
public $content; // text()
|
||||||
public $rendered; // text()
|
public $rendered; // text()
|
||||||
public $url; // varchar(255)
|
public $url; // varchar(255)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
@ -55,9 +55,7 @@ class Notice extends Memcached_DataObject
|
|||||||
public $conversation; // int(4)
|
public $conversation; // int(4)
|
||||||
|
|
||||||
/* Static get */
|
/* Static get */
|
||||||
function staticGet($k,$v=NULL) {
|
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Notice',$k,$v); }
|
||||||
return Memcached_DataObject::staticGet('Notice',$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
|
||||||
|
@ -266,7 +266,7 @@ ts = K
|
|||||||
id = 129
|
id = 129
|
||||||
profile_id = 129
|
profile_id = 129
|
||||||
uri = 2
|
uri = 2
|
||||||
content = 2
|
content = 34
|
||||||
rendered = 34
|
rendered = 34
|
||||||
url = 2
|
url = 2
|
||||||
created = 142
|
created = 142
|
||||||
|
Loading…
Reference in New Issue
Block a user