Change the field name form type to fieldtype in the field view.

This commit is contained in:
2016-03-04 02:01:43 +02:00
parent 3efbb7b4af
commit 80670beada
369 changed files with 951 additions and 946 deletions

View File

@ -502,6 +502,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_field` (
`datalenght` CHAR(64) NOT NULL DEFAULT '',
`datalenght_other` CHAR(64) NOT NULL DEFAULT '',
`datatype` CHAR(64) NOT NULL DEFAULT '',
`fieldtype` INT(11) NOT NULL DEFAULT '0',
`indexes` CHAR(64) NOT NULL DEFAULT '',
`javascript_view_footer` TEXT NOT NULL DEFAULT '',
`javascript_views_footer` TEXT NOT NULL DEFAULT '',
@ -509,7 +510,6 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_field` (
`not_required` INT(1) NOT NULL DEFAULT '0',
`null_switch` CHAR(64) NOT NULL DEFAULT '',
`store` INT(11) NOT NULL DEFAULT '0',
`type` INT(11) NOT NULL DEFAULT '0',
`xml` TEXT NOT NULL DEFAULT '',
`params` TEXT NOT NULL DEFAULT '',
`published` tinyint(1) NOT NULL DEFAULT '1',
@ -530,7 +530,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_field` (
KEY `idx_modifiedby` (`modified_by`),
KEY `idx_state` (`published`),
KEY `idx_name` (`name`),
KEY `idx_type` (`type`),
KEY `idx_fieldtype` (`fieldtype`),
KEY `idx_datatype` (`datatype`),
KEY `idx_indexes` (`indexes`),
KEY `idx_null_switch` (`null_switch`),

View File

@ -0,0 +1 @@
ALTER TABLE `#__componentbuilder_field` CHANGE `type` `fieldtype` INT( 11 ) NOT NULL DEFAULT '0';