Change the field name form type to fieldtype in the field view.
This commit is contained in:
@ -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`),
|
||||
|
1
admin/sql/updates/mysql/2.1.1.sql
Normal file
1
admin/sql/updates/mysql/2.1.1.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE `#__componentbuilder_field` CHANGE `type` `fieldtype` INT( 11 ) NOT NULL DEFAULT '0';
|
Reference in New Issue
Block a user