public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
public $reply_to; // int(4)
+ public $is_local; // tinyint(1)
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Notice',$k,$v); }
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
reply_to integer comment 'notice replied to (usually a guess)' references notice (id),
-
+ is_local tinyint default 0 comment 'notice was generated by a user',
+
index notice_profile_id_idx (profile_id),
+ index notice_created_idx (profile_id),
+
FULLTEXT(content)
) ENGINE=MyISAM;