summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-22 10:16:14 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-22 10:16:14 -0400
commite1361cdf489fc87aecb84261c5e2b7b47ce9c829 (patch)
tree294c5be88c17119c24d148603e37782adcc38b5a /db
parent1cc71d0684360b0a7e6cf7bf966dd5ff7fcf5386 (diff)
mark notices as local
darcs-hash:20080722141614-84dde-b80c6945fdb90a5f67acaba65a1e4c2b306b1f8e.gz
Diffstat (limited to 'db')
-rw-r--r--db/laconica.sql5
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;