diff options
Diffstat (limited to 'db/laconica.sql')
-rw-r--r-- | db/laconica.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/db/laconica.sql b/db/laconica.sql index 66510b148..b6de405f9 100644 --- a/db/laconica.sql +++ b/db/laconica.sql @@ -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; |