diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b3d9865924c34d45055efb1f7f9812ba21beead..1673a019fded8c7484b0231a50439a75b883cedf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -# Version 1.20 (not yet released) +# Version 1.19.1 + +* Fixed issue with install sql and innodb. # Version 1.19 diff --git a/info.xml b/info.xml index a39812ea913acdd2bc463d154f14c3fcd95675ba..9be6ae03db058dde34a9f2ca75dd20a600443b77 100644 --- a/info.xml +++ b/info.xml @@ -14,8 +14,8 @@ <url desc="Documentation">https://lab.civicrm.org/extensions/dataprocessor/blob/master/README.md</url> <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url> </urls> - <releaseDate>2020-10-20</releaseDate> - <version>1.20-dev</version> + <releaseDate>2020-10-22</releaseDate> + <version>1.19.1</version> <develStage>stable</develStage> <compatibility> <ver>4.7</ver> diff --git a/sql/auto_install.sql b/sql/auto_install.sql index e46c35c27d503400ee65565ad2bc6ad3a04950f1..f3fcda8714867d43661949fdea10e6b428659c9c 100644 --- a/sql/auto_install.sql +++ b/sql/auto_install.sql @@ -61,13 +61,13 @@ CREATE TABLE `civicrm_data_processor` ( `storage_type` varchar(255) NULL , `storage_configuration` text NULL , `status` int unsigned NULL DEFAULT 0 , - `source_file` varchar(255) NULL + `source_file` varchar(255) NULL , PRIMARY KEY (`id`) - - - -) ; + + + +) ENGINE=InnoDB ; -- /******************************************************* -- * @@ -83,12 +83,12 @@ CREATE TABLE `civicrm_data_processor_field` ( `name` varchar(255) NULL , `title` varchar(255) NOT NULL , `type` varchar(255) NOT NULL , - `configuration` text NULL + `configuration` text NULL , PRIMARY KEY (`id`) - - -, CONSTRAINT FK_civicrm_data_processor_field_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE + + +, CONSTRAINT FK_civicrm_data_processor_field_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE ) ; -- /******************************************************* @@ -108,13 +108,13 @@ CREATE TABLE `civicrm_data_processor_filter` ( `is_required` tinyint NULL , `is_exposed` tinyint NULL DEFAULT 1 , `configuration` text NULL , - `filter_value` text NULL + `filter_value` text NULL , PRIMARY KEY (`id`) - - -, CONSTRAINT FK_civicrm_data_processor_filter_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE -) ; + + +, CONSTRAINT FK_civicrm_data_processor_filter_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE +) ENGINE=InnoDB ; -- /******************************************************* -- * @@ -131,13 +131,13 @@ CREATE TABLE `civicrm_data_processor_output` ( `permission` varchar(255) NULL , `api_entity` varchar(255) NULL , `api_action` varchar(255) NULL , - `api_count_action` varchar(255) NULL + `api_count_action` varchar(255) NULL , PRIMARY KEY (`id`) - - -, CONSTRAINT FK_civicrm_data_processor_output_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE -) ; + + +, CONSTRAINT FK_civicrm_data_processor_output_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE +) ENGINE=InnoDB ; -- /******************************************************* -- * @@ -155,12 +155,11 @@ CREATE TABLE `civicrm_data_processor_source` ( `type` varchar(255) NOT NULL , `configuration` text NULL , `join_type` varchar(255) NULL , - `join_configuration` text NULL + `join_configuration` text NULL , PRIMARY KEY (`id`) - - -, CONSTRAINT FK_civicrm_data_processor_source_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE -) ; - \ No newline at end of file + +, CONSTRAINT FK_civicrm_data_processor_source_data_processor_id FOREIGN KEY (`data_processor_id`) REFERENCES `civicrm_data_processor`(`id`) ON DELETE CASCADE +) ENGINE=InnoDB ; +