]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/08to09_pg.sql
Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / db / 08to09_pg.sql
index 4f8281bc3eaa49eec0ab0a6426dc629dbf8eac49..1df8c249b526f1e983aa5ec712d6fce5eb00249c 100644 (file)
@@ -80,10 +80,3 @@ 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)
-);
-