Resolved #9 Layout Issue - Custom Lookup Field.

This commit is contained in:
2016-07-12 22:07:55 +01:00
parent 53cf534664
commit 2f9e54e371
382 changed files with 1023 additions and 970 deletions

View File

@ -229,6 +229,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_admin_view` (
`default` TEXT NOT NULL DEFAULT '',
`description` VARCHAR(255) NOT NULL DEFAULT '',
`dynamic_get` INT(11) NOT NULL DEFAULT '0',
`icon` CHAR(64) NOT NULL DEFAULT '',
`js_document` TEXT NOT NULL DEFAULT '',
`main_get` INT(11) NOT NULL DEFAULT '0',
`name` VARCHAR(255) NOT NULL DEFAULT '',

View File

@ -0,0 +1,3 @@
ALTER TABLE `#__componentbuilder_custom_admin_view` ADD `icon` CHAR(64) NOT NULL DEFAULT '' AFTER `dynamic_get`;
ALTER TABLE `#__componentbuilder_component` CHANGE `version_update` `version_update` MEDIUMTEXT NOT NULL;

View File

@ -0,0 +1 @@