]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove forward table from db scripts
authorEvan Prodromou <evan@status.net>
Thu, 10 Dec 2009 19:34:47 +0000 (14:34 -0500)
committerEvan Prodromou <evan@status.net>
Thu, 10 Dec 2009 19:34:47 +0000 (14:34 -0500)
classes/statusnet.ini
db/08to09.sql
db/statusnet.sql

index a5126795bdf6ac768ec917c58c1567b2d799a496..835faeb0b4eda8b003ea5dd66cc86901e760fc32 100644 (file)
@@ -1,4 +1,3 @@
-
 [avatar]
 profile_id = 129
 original = 17
@@ -196,15 +195,6 @@ id = K
 service = K
 uri = U
 
-[forward]
-profile_id = 129
-notice_id = 129
-created = 142
-
-[forward__keys]
-profile_id = K
-notice_id = K
-
 [group_alias]
 alias = 130
 group_id = 129
index a945416ea4ac48338873bdf21b9a9f794a30e8f5..64640f4ced942ff831d0b1b704d5afb11e5a3d15 100644 (file)
@@ -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;
-
index b500b81f2d0c2e00a985df6fd4d0376ba3835f97..18abcdfdb2d8b479b2b4489205ab31990a21991b 100644 (file)
@@ -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;
-