diff options
author | Evan Prodromou <evan@status.net> | 2009-12-11 10:20:32 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-11 10:20:32 -0500 |
commit | 3d06431787430f7102087ee4a8a66319fcb50350 (patch) | |
tree | 3cbba321e24381acbca312034fe0f8f764bfd185 /db/statusnet_pg.sql | |
parent | 63642dccf1d2ad6a42eafed5d4ede86635b554a2 (diff) |
add repeat_of column to notice table
Diffstat (limited to 'db/statusnet_pg.sql')
-rw-r--r-- | db/statusnet_pg.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql index c37fa81de..020bfd967 100644 --- a/db/statusnet_pg.sql +++ b/db/statusnet_pg.sql @@ -135,7 +135,9 @@ create table notice ( lat decimal(10,7) /* comment 'latitude'*/ , lon decimal(10,7) /* comment 'longitude'*/ , location_id integer /* comment 'location id if possible'*/ , - location_ns integer /* comment 'namespace for location'*/ + location_ns integer /* comment 'namespace for location'*/ , + repeat_of integer /* comment 'notice this is a repeat of' */ references notice (id) , + /* FULLTEXT(content) */ ); |