diff --git a/docs/VERSION.txt b/docs/VERSION.txt index a3951bb..1427e53 100644 --- a/docs/VERSION.txt +++ b/docs/VERSION.txt @@ -1 +1 @@ -3.0.3.4 +3.0.3.5 diff --git a/sql/mysql/install/data.sql b/sql/mysql/install/data.sql index 527d7d0..0dc6780 100644 --- a/sql/mysql/install/data.sql +++ b/sql/mysql/install/data.sql @@ -3,7 +3,7 @@ -- http://www.phpmyadmin.net -- -- Host: localhost --- Generation Time: Jul 12, 2006 at 12:02 PM +-- Generation Time: Jul 14, 2006 at 03:28 PM -- Server version: 5.0.22 -- PHP Version: 4.4.2-1build1 @@ -732,7 +732,7 @@ INSERT INTO `status_lookup` VALUES (5, 'Incomplete'); -- INSERT INTO `system_settings` VALUES (1, 'lastIndexUpdate', '0'); -INSERT INTO `system_settings` VALUES (2, 'knowledgeTreeVersion', '3.0.3.4'); +INSERT INTO `system_settings` VALUES (2, 'knowledgeTreeVersion', '3.0.3.5'); INSERT INTO `system_settings` VALUES (3, 'databaseVersion', '2.99.5'); -- @@ -879,6 +879,8 @@ INSERT INTO `upgrades` VALUES (104, 'func*3.0.3.3*0*generateWorkflowTriggers', ' INSERT INTO `upgrades` VALUES (105, 'sql*3.0.3.4*0*3.0.3.4/column_entries.sql', 'Database upgrade to version 3.0.3.4: Column entries', '2006-07-12 12:00:33', 1, 'upgrade*3.0.3.4*99*upgrade3.0.3.4'); INSERT INTO `upgrades` VALUES (106, 'sql*3.0.3.4*0*3.0.3.4/bulk_export_transaction.sql', 'Database upgrade to version 3.0.3.4: Bulk export transaction', '2006-07-12 12:00:33', 1, 'upgrade*3.0.3.4*99*upgrade3.0.3.4'); INSERT INTO `upgrades` VALUES (107, 'upgrade*3.0.3.4*99*upgrade3.0.3.4', 'Upgrade from version 3.0.3 to 3.0.3.4', '2006-07-12 12:00:34', 1, 'upgrade*3.0.3.4*99*upgrade3.0.3.4'); +INSERT INTO `upgrades` VALUES (108, 'sql*3.0.3.5*0*3.0.3.5/notifications_data_text.sql', 'Database upgrade to version 3.0.3.5: Notifications data text', '2006-07-14 15:26:49', 1, 'upgrade*3.0.3.5*99*upgrade3.0.3.5'); +INSERT INTO `upgrades` VALUES (109, 'upgrade*3.0.3.5*99*upgrade3.0.3.5', 'Upgrade from version 3.0.3.4 to 3.0.3.5', '2006-07-14 15:26:49', 1, 'upgrade*3.0.3.5*99*upgrade3.0.3.5'); -- -- Dumping data for table `user_history` @@ -1329,7 +1331,7 @@ INSERT INTO `zseq_units_organisations_link` VALUES (1); -- Dumping data for table `zseq_upgrades` -- -INSERT INTO `zseq_upgrades` VALUES (107); +INSERT INTO `zseq_upgrades` VALUES (109); -- -- Dumping data for table `zseq_user_history` diff --git a/sql/mysql/install/structure.sql b/sql/mysql/install/structure.sql index c3adbfa..5a13767 100644 --- a/sql/mysql/install/structure.sql +++ b/sql/mysql/install/structure.sql @@ -3,7 +3,7 @@ -- http://www.phpmyadmin.net -- -- Host: localhost --- Generation Time: Jul 12, 2006 at 12:02 PM +-- Generation Time: Jul 14, 2006 at 03:28 PM -- Server version: 5.0.22 -- PHP Version: 4.4.2-1build1 @@ -877,6 +877,7 @@ CREATE TABLE `notifications` ( `data_int_2` int(11) default NULL, `data_str_1` varchar(255) default NULL, `data_str_2` varchar(255) default NULL, + `data_text_1` text, UNIQUE KEY `id` (`id`), KEY `type` (`type`), KEY `user_id` (`user_id`) @@ -2191,7 +2192,7 @@ CREATE TABLE `zseq_units_organisations_link` ( CREATE TABLE `zseq_upgrades` ( `id` int(10) unsigned NOT NULL auto_increment, PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=108 ; +) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=110 ; -- -------------------------------------------------------- diff --git a/sql/mysql/upgrade/3.0.3.5/notifications_data_text.sql b/sql/mysql/upgrade/3.0.3.5/notifications_data_text.sql new file mode 100644 index 0000000..d621f3e --- /dev/null +++ b/sql/mysql/upgrade/3.0.3.5/notifications_data_text.sql @@ -0,0 +1 @@ +ALTER TABLE `notifications` ADD COLUMN `data_text_1` text;