From 3e9c2d779a3d3e014e8900060c3a2632d9e7f138 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Wed, 9 Dec 2009 13:12:29 +1300 Subject: add missing table "forward" --- db/08to09_pg.sql | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'db/08to09_pg.sql') diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index ee590b52f..4f8281bc3 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -79,3 +79,11 @@ ALTER TABLE profile ADD COLUMN lat decimal(10,7) /*comment 'latitude'*/ ; ALTER TABLE profile ADD COLUMN lon decimal(10,7) /*comment 'longitude'*/; ALTER TABLE profile ADD COLUMN location_id integer /* comment 'location id if possible'*/; ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/; + +CREATE TABLE forward ( + profile_id integer not null /*comment 'profile who forwarded the notice'*/ references profile (id), + notice_id integer not null /*comment 'notice they forwarded'*/ references notice (id), + created timestamp not null /*comment 'date this record was created'*/ DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (profile_id, notice_id) +); + -- cgit v1.2.3-54-g00ecf