diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-09 16:07:11 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-09 16:07:11 -0400 |
commit | 816262d4884d09804a93e1a6974a6b0ecc6660f1 (patch) | |
tree | fd26853dd3d5271622d029ffd4ead8645e3f9326 /classes/Notice.php | |
parent | 63f1fb4259402bf2b53097d2525878a2f6daa8c4 (diff) |
rebuild DB_DataObject classes for new structure
darcs-hash:20080709200711-84dde-b6a9e403ab50ef5a6497a25a756ed63c373f0402.gz
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 24a719104..a00114f95 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -34,9 +34,11 @@ class Notice extends DB_DataObject public $profile_id; // int(4) not_null public $uri; // varchar(255) unique_key public $content; // varchar(140) + public $rendered; // text() public $url; // varchar(255) public $created; // datetime() not_null public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP + public $reply_to; // int(4) /* Static get */ function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Notice',$k,$v); } |