summaryrefslogtreecommitdiff
path: root/db/08to09.sql
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-12 16:18:55 -0500
committerEvan Prodromou <evan@status.net>2009-12-12 16:18:55 -0500
commita5a89f50b8e3f9b99d8ea3a7eff378637b149c7f (patch)
tree771b39f50b6272f62d08902d25b9fb54eb11937d /db/08to09.sql
parentcc063aedccd614d6e486d88921c7752ec5750551 (diff)
parent1ec54d3433a79f56c14c0a99114bb1e607348899 (diff)
Merge branch 'forward' into 0.9.x
Diffstat (limited to 'db/08to09.sql')
-rw-r--r--db/08to09.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/08to09.sql b/db/08to09.sql
index 64640f4ce..28ec3ec16 100644
--- a/db/08to09.sql
+++ b/db/08to09.sql
@@ -4,8 +4,10 @@ alter table notice
add column lon decimal(10,7) comment 'longitude',
add column location_id integer comment 'location id if possible',
add column location_ns integer comment 'namespace for location',
+ add column repeat_of integer comment 'notice this is a repeat of' references notice (id),
drop index notice_profile_id_idx,
- add index notice_profile_id_idx (profile_id,created,id);
+ add index notice_profile_id_idx (profile_id,created,id),
+ add index notice_repeatof_idx (repeat_of);
alter table message
modify column content text comment 'message content';