]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
added group_block table to database
authorEvan Prodromou <evan@controlyourself.ca>
Sun, 14 Jun 2009 19:04:45 +0000 (12:04 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Sun, 14 Jun 2009 19:04:45 +0000 (12:04 -0700)
db/laconica.sql

index a11e31692548449c4cabfd0629b589961ea577d4..3ffe1ed81497504df38dee98f072585e58fbf2d5 100644 (file)
@@ -482,3 +482,13 @@ create table file_to_post (
 
     unique(file_id, post_id)
 ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
+
+create table group_block (
+   group_id integer not null comment 'group profile is blocked from' references user_group (id),
+   blocked integer not null comment 'profile that is blocked' references profile (id),
+   blocker integer not null comment 'user making the block' references user (id),
+   modified timestamp comment 'date of blocking',
+
+   constraint primary key (group_id, blocked)
+
+) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;