Commit 206f2243f80b28a9cfeaf491cf75f97f19f354e5

Authored by Megan Watson
1 parent d437a9c3

Updated server to 3.7.0.3

Committed by: Megan Watson
docs/VERSION-NAME.txt
1   -3.7.0.2
2 1 \ No newline at end of file
  2 +3.7.0.3
3 3 \ No newline at end of file
... ...
docs/VERSION-OSS.txt
1   -3.7.0.2
2 1 \ No newline at end of file
  2 +3.7.0.3
3 3 \ No newline at end of file
... ...
sql/mysql/install/data.sql
... ... @@ -1465,8 +1465,8 @@ LOCK TABLES `system_settings` WRITE;
1465 1465 /*!40000 ALTER TABLE `system_settings` DISABLE KEYS */;
1466 1466 INSERT INTO `system_settings` VALUES
1467 1467 (1,'lastIndexUpdate','0'),
1468   -(2,'knowledgeTreeVersion','3.7.0.2'),
1469   -(3,'databaseVersion','3.7.0.2'),
  1468 +(2,'knowledgeTreeVersion','3.7.0.3'),
  1469 +(3,'databaseVersion','3.7.0.3'),
1470 1470 (4,'server_name','127.0.0.1');
1471 1471 /*!40000 ALTER TABLE `system_settings` ENABLE KEYS */;
1472 1472 UNLOCK TABLES;
... ... @@ -1779,7 +1779,8 @@ INSERT INTO `upgrades` VALUES
1779 1779 (233,'sql*3.7.0.2*0*3.7.0.2/processor_queue.sql','Database upgrade to version 3.7.0.1: Processor Queue','2009-09-01 00:00:00',1,'upgrade*3.7.0.2*99*upgrade3.7.0.2'),
1780 1780 (234,'upgrade*3.7.0.2*99*upgrade3.7.0.2','Upgrade from version 3.7.0.1 to 3.7.0.2','2009-11-19 00:00:00',1,'upgrade*3.7.0.2*99*upgrade3.7.0.2'),
1781 1781 (235,'sql*3.7.0.3*0*3.7.0.3/clienttools_config.sql','Database upgrade to version 3.7.0.3: Clienttools Config','2009-12-10 00:00:00',1,'upgrade*3.7.0.3*99*upgrade3.7.0.3'),
1782   -(236,'sql*3.7.0.3*0*3.7.0.3/uploaded_files.sql','Database upgrade to version 3.7.0.3: Uploaded Files','2009-12-10 00:00:00',1,'upgrade*3.7.0.3*99*upgrade3.7.0.3');
  1782 +(236,'sql*3.7.0.3*0*3.7.0.3/uploaded_files.sql','Database upgrade to version 3.7.0.3: Uploaded Files','2009-12-10 00:00:00',1,'upgrade*3.7.0.3*99*upgrade3.7.0.3'),
  1783 +(237,'upgrade*3.7.0.3*99*upgrade3.7.0.3','Upgrade from version 3.7.0.2 to 3.7.0.3','2009-12-14 00:00:00',1,'upgrade*3.7.0.3*99*upgrade3.7.0.3');
1783 1784 /*!40000 ALTER TABLE `upgrades` ENABLE KEYS */;
1784 1785 UNLOCK TABLES;
1785 1786  
... ...
sql/mysql/upgrade/3.7.0.1/plugin_helper.sql
1   -ALTER TABLE `plugin_helper` CHANGE `viewtype` `viewtype` ENUM( 'general', 'dashboard', 'plugin', 'folder', 'document', 'admindispatcher', 'dispatcher', 'process' ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'general'
2 1 \ No newline at end of file
  2 +ALTER TABLE `plugin_helper` CHANGE `viewtype` `viewtype` ENUM( 'general', 'dashboard', 'plugin', 'folder', 'document', 'admindispatcher', 'dispatcher', 'process' ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'general';
3 3 \ No newline at end of file
... ...