]> git.mjollnir.org Git - moodle.git/commitdiff
Bugfixes from move - this is now up to date
authormartin <martin>
Thu, 20 Jun 2002 15:41:02 +0000 (15:41 +0000)
committermartin <martin>
Thu, 20 Jun 2002 15:41:02 +0000 (15:41 +0000)
mod/forum/db/mysql.sql

index 7506d3b2dfa73e92f7661c883b8c9b77842973b9..aecc2d1c2b7c288e393dd5bd866e94f4516dcd07 100644 (file)
@@ -5,7 +5,7 @@
 CREATE TABLE forum (
   id int(10) unsigned NOT NULL auto_increment,
   course int(10) unsigned NOT NULL default '0',
-  type enum('discussion','news','general','social') NOT NULL default 'general',
+  type enum('discussion','news','general','social','eachuser') NOT NULL default 'general',
   name varchar(255) NOT NULL default '',
   intro tinytext NOT NULL,
   open tinyint(1) unsigned NOT NULL default '0',
@@ -33,6 +33,6 @@ CREATE TABLE forum_subscriptions (
 # Dumping data for table `log_display`
 #
 
-INSERT INTO log_display VALUES ('discuss', 'view forum', 'forum', 'name');
-INSERT INTO log_display VALUES ('discuss', 'subscribe', 'forum', 'name');
-INSERT INTO log_display VALUES ('discuss', 'unsubscribe', 'forum', 'name');
+INSERT INTO log_display VALUES ('forum', 'view forum', 'forum', 'name');
+INSERT INTO log_display VALUES ('forum', 'subscribe', 'forum', 'name');
+INSERT INTO log_display VALUES ('forum', 'unsubscribe', 'forum', 'name');