mark notices as local

darcs-hash:20080722141614-84dde-b80c6945fdb90a5f67acaba65a1e4c2b306b1f8e.gz
This commit is contained in:
Evan Prodromou
2008-07-22 10:16:14 -04:00
parent 1cc71d0684
commit e1361cdf48
3 changed files with 6 additions and 1 deletions

View File

@@ -100,8 +100,11 @@ create table notice (
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;