resolve gh-115 to allow excluding of folders and files in the repository folder
This commit is contained in:
@ -72,6 +72,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
`sql` MEDIUMTEXT NOT NULL,
|
||||
`sql_tweak` TEXT NOT NULL,
|
||||
`system_name` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`toignore` TEXT NOT NULL,
|
||||
`update_server` VARCHAR(255) NOT NULL DEFAULT '',
|
||||
`update_server_ftp` INT(11) NOT NULL DEFAULT 0,
|
||||
`update_server_target` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
@ -98,30 +99,30 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_component` (
|
||||
KEY `idx_modifiedby` (`modified_by`),
|
||||
KEY `idx_state` (`published`),
|
||||
KEY `idx_name_code` (`name_code`),
|
||||
KEY `idx_add_update_server` (`add_update_server`),
|
||||
KEY `idx_add_placeholders` (`add_placeholders`),
|
||||
KEY `idx_add_admin_event` (`add_admin_event`),
|
||||
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`),
|
||||
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
|
||||
KEY `idx_debug_linenr` (`debug_linenr`),
|
||||
KEY `idx_mvc_versiondate` (`mvc_versiondate`),
|
||||
KEY `idx_add_site_event` (`add_site_event`),
|
||||
KEY `idx_addfootable` (`addfootable`),
|
||||
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
|
||||
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
|
||||
KEY `idx_creatuserhelper` (`creatuserhelper`),
|
||||
KEY `idx_add_license` (`add_license`),
|
||||
KEY `idx_addfootable` (`addfootable`),
|
||||
KEY `idx_license_type` (`license_type`),
|
||||
KEY `idx_add_php_helper_admin` (`add_php_helper_admin`),
|
||||
KEY `idx_add_php_helper_site` (`add_php_helper_site`),
|
||||
KEY `idx_add_php_dashboard_methods` (`add_php_dashboard_methods`),
|
||||
KEY `idx_add_php_helper_both` (`add_php_helper_both`),
|
||||
KEY `idx_add_admin_event` (`add_admin_event`),
|
||||
KEY `idx_add_site_event` (`add_site_event`),
|
||||
KEY `idx_update_server_target` (`update_server_target`),
|
||||
KEY `idx_add_update_server` (`add_update_server`),
|
||||
KEY `idx_name` (`name`),
|
||||
KEY `idx_adduikit` (`adduikit`),
|
||||
KEY `idx_add_css` (`add_css`),
|
||||
KEY `idx_add_email_helper` (`add_email_helper`),
|
||||
KEY `idx_add_php_preflight_install` (`add_php_preflight_install`),
|
||||
KEY `idx_add_php_preflight_update` (`add_php_preflight_update`),
|
||||
KEY `idx_emptycontributors` (`emptycontributors`),
|
||||
KEY `idx_add_php_postflight_install` (`add_php_postflight_install`),
|
||||
KEY `idx_add_php_postflight_update` (`add_php_postflight_update`),
|
||||
KEY `idx_emptycontributors` (`emptycontributors`),
|
||||
KEY `idx_add_php_method_uninstall` (`add_php_method_uninstall`),
|
||||
KEY `idx_add_sql` (`add_sql`),
|
||||
KEY `idx_addreadme` (`addreadme`),
|
||||
@ -148,6 +149,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
|
||||
`add_php_batchmove` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_before_delete` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_before_publish` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_before_save` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_document` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_getitem` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
`add_php_getitems` TINYINT(1) NOT NULL DEFAULT 0,
|
||||
@ -186,6 +188,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
|
||||
`php_batchmove` MEDIUMTEXT NOT NULL,
|
||||
`php_before_delete` MEDIUMTEXT NOT NULL,
|
||||
`php_before_publish` MEDIUMTEXT NOT NULL,
|
||||
`php_before_save` MEDIUMTEXT NOT NULL,
|
||||
`php_controller` MEDIUMTEXT NOT NULL,
|
||||
`php_controller_list` MEDIUMTEXT NOT NULL,
|
||||
`php_document` MEDIUMTEXT NOT NULL,
|
||||
@ -227,33 +230,34 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_admin_view` (
|
||||
KEY `idx_state` (`published`),
|
||||
KEY `idx_name_single` (`name_single`),
|
||||
KEY `idx_name_list` (`name_list`),
|
||||
KEY `idx_type` (`type`),
|
||||
KEY `idx_add_fadein` (`add_fadein`),
|
||||
KEY `idx_source` (`source`),
|
||||
KEY `idx_type` (`type`),
|
||||
KEY `idx_add_css_view` (`add_css_view`),
|
||||
KEY `idx_add_php_getitem` (`add_php_getitem`),
|
||||
KEY `idx_add_php_getitems` (`add_php_getitems`),
|
||||
KEY `idx_add_css_views` (`add_css_views`),
|
||||
KEY `idx_add_php_getitems_after_all` (`add_php_getitems_after_all`),
|
||||
KEY `idx_add_php_getlistquery` (`add_php_getlistquery`),
|
||||
KEY `idx_add_javascript_view_file` (`add_javascript_view_file`),
|
||||
KEY `idx_add_php_before_save` (`add_php_before_save`),
|
||||
KEY `idx_add_php_save` (`add_php_save`),
|
||||
KEY `idx_add_php_postsavehook` (`add_php_postsavehook`),
|
||||
KEY `idx_add_javascript_view_footer` (`add_javascript_view_footer`),
|
||||
KEY `idx_add_php_postsavehook` (`add_php_postsavehook`),
|
||||
KEY `idx_add_php_allowedit` (`add_php_allowedit`),
|
||||
KEY `idx_add_php_batchcopy` (`add_php_batchcopy`),
|
||||
KEY `idx_add_javascript_views_file` (`add_javascript_views_file`),
|
||||
KEY `idx_add_php_batchcopy` (`add_php_batchcopy`),
|
||||
KEY `idx_add_php_batchmove` (`add_php_batchmove`),
|
||||
KEY `idx_add_php_before_publish` (`add_php_before_publish`),
|
||||
KEY `idx_add_javascript_views_footer` (`add_javascript_views_footer`),
|
||||
KEY `idx_add_php_before_publish` (`add_php_before_publish`),
|
||||
KEY `idx_add_php_after_publish` (`add_php_after_publish`),
|
||||
KEY `idx_add_php_before_delete` (`add_php_before_delete`),
|
||||
KEY `idx_add_custom_button` (`add_custom_button`),
|
||||
KEY `idx_add_php_before_delete` (`add_php_before_delete`),
|
||||
KEY `idx_add_php_after_delete` (`add_php_after_delete`),
|
||||
KEY `idx_add_php_document` (`add_php_document`),
|
||||
KEY `idx_add_sql` (`add_sql`),
|
||||
KEY `idx_add_php_ajax` (`add_php_ajax`),
|
||||
KEY `idx_add_custom_import` (`add_custom_import`),
|
||||
KEY `idx_add_php_ajax` (`add_php_ajax`)
|
||||
KEY `idx_add_php_getitem` (`add_php_getitem`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
|
||||
|
Reference in New Issue
Block a user