From dd098fee776fbb794080b8f95beab16b2f31556b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 10 Dec 2009 14:34:47 -0500 Subject: remove forward table from db scripts --- db/08to09.sql | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'db/08to09.sql') diff --git a/db/08to09.sql b/db/08to09.sql index a945416ea..64640f4ce 100644 --- a/db/08to09.sql +++ b/db/08to09.sql @@ -82,15 +82,3 @@ create table login_token ( constraint primary key (user_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -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 datetime not null comment 'date this record was created', - - constraint primary key (profile_id, notice_id) - -) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; - -- cgit v1.2.3-54-g00ecf