Browse Source

[svn r17941] Added glossary table (had been forgotten, apparently)

Yannick Warnier 16 years ago
parent
commit
6919fb4326
1 changed files with 1 additions and 0 deletions
  1. 1 0
      main/install/migrate-db-1.8.5-1.8.6-pre.sql

+ 1 - 0
main/install/migrate-db-1.8.5-1.8.6-pre.sql

@@ -190,3 +190,4 @@ INSERT INTO tool(name,link,image,visibility,admin,address,added_tool,target,cate
 INSERT INTO tool(name,link,image,visibility,admin,address,added_tool,target,category) VALUES ('notebook','notebook/index.php','notebook.gif',0,'0','squaregrey.gif',0,'_self','interaction');
 ALTER TABLE quiz ADD feedback_type int NOT NULL default 0;
 ALTER TABLE quiz_answer ADD destination text NOT NULL;
+CREATE TABLE glossary(glossary_id int unsigned NOT NULL auto_increment, name varchar(255) NOT NULL, description text not null, display_order int, PRIMARY KEY  (glossary_id));