summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-10 14:34:47 -0500
committerEvan Prodromou <evan@status.net>2009-12-10 14:34:47 -0500
commitdd098fee776fbb794080b8f95beab16b2f31556b (patch)
treea524fb457d5823b2ae2348a2404f6c25849091f8 /db
parent37b0852fdb8b82741b327af57d898d4d89c2f177 (diff)
remove forward table from db scripts
Diffstat (limited to 'db')
-rw-r--r--db/08to09.sql12
-rw-r--r--db/statusnet.sql11
2 files changed, 0 insertions, 23 deletions
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;
-
diff --git a/db/statusnet.sql b/db/statusnet.sql
index b500b81f2..18abcdfdb 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -585,14 +585,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;
-