Added #39 a new feature the imports custom code during compilation. We also improved the compiler.
This commit is contained in:
32
admin/sql/updates/mysql/2.2.6.sql
Normal file
32
admin/sql/updates/mysql/2.2.6.sql
Normal file
@ -0,0 +1,32 @@
|
||||
CREATE TABLE IF NOT EXISTS `#__componentbuilder_custom_code` (
|
||||
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||||
`asset_id` INT(255) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`code` MEDIUMTEXT NOT NULL,
|
||||
`component` INT(11) NOT NULL DEFAULT '0',
|
||||
`from_line` VARCHAR(100) NOT NULL DEFAULT '',
|
||||
`path` TEXT NOT NULL,
|
||||
`to_line` VARCHAR(100) NOT NULL DEFAULT '',
|
||||
`type` TINYINT(1) NOT NULL DEFAULT '0',
|
||||
`params` TEXT NOT NULL,
|
||||
`published` TINYINT(1) NOT NULL DEFAULT '1',
|
||||
`created_by` INT(11) NOT NULL DEFAULT '0',
|
||||
`modified_by` INT(11) NOT NULL DEFAULT '0',
|
||||
`created` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`modified` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`checked_out` INT(11) NOT NULL,
|
||||
`checked_out_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||||
`version` INT(11) NOT NULL DEFAULT '1',
|
||||
`hits` INT(11) NOT NULL DEFAULT '0',
|
||||
`access` INT(11) DEFAULT NULL,
|
||||
`ordering` INT(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `idx_access` (`access`),
|
||||
KEY `idx_checkout` (`checked_out`),
|
||||
KEY `idx_createdby` (`created_by`),
|
||||
KEY `idx_modifiedby` (`modified_by`),
|
||||
KEY `idx_state` (`published`),
|
||||
KEY `idx_component` (`component`),
|
||||
KEY `idx_type` (`type`),
|
||||
KEY `idx_from_line` (`from_line`),
|
||||
KEY `idx_to_line` (`to_line`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
|
1
admin/sql/updates/mysql/2.2.7.sql
Normal file
1
admin/sql/updates/mysql/2.2.7.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE `#__componentbuilder_custom_code` ADD `hashtarget` VARCHAR(65) NOT NULL DEFAULT '' AFTER `from_line`;
|
1
admin/sql/updates/mysql/2.2.8.sql
Normal file
1
admin/sql/updates/mysql/2.2.8.sql
Normal file
@ -0,0 +1 @@
|
||||
ALTER TABLE `#__componentbuilder_custom_code` ADD `hashendtarget` VARCHAR(65) NOT NULL DEFAULT '' AFTER `hashtarget`;
|
Reference in New Issue
Block a user