]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add forward table to updates
authorEvan Prodromou <evan@status.net>
Tue, 8 Dec 2009 22:32:09 +0000 (17:32 -0500)
committerEvan Prodromou <evan@status.net>
Tue, 8 Dec 2009 22:32:09 +0000 (17:32 -0500)
db/08to09.sql

index 64640f4ced942ff831d0b1b704d5afb11e5a3d15..a945416ea4ac48338873bdf21b9a9f794a30e8f5 100644 (file)
@@ -82,3 +82,15 @@ 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;
+