forked from joomla/Component-Builder
60 lines
2.7 KiB
MySQL
60 lines
2.7 KiB
MySQL
|
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin` (
|
||
|
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||
|
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
|
||
|
`class_extends` INT(11) NOT NULL DEFAULT 0,
|
||
|
`fields` TEXT NOT NULL,
|
||
|
`joomla_plugin_group` INT(11) NOT NULL DEFAULT 0,
|
||
|
`main_class_code` MEDIUMTEXT NOT NULL,
|
||
|
`method_selection` TEXT NOT NULL,
|
||
|
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||
|
`property_selection` TEXT NOT NULL,
|
||
|
`params` text NOT NULL,
|
||
|
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||
|
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`modified_by` INT(10) unsigned 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) unsigned NOT NULL DEFAULT 0,
|
||
|
`checked_out_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
|
`version` INT(10) unsigned NOT NULL DEFAULT 1,
|
||
|
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`access` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`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_name` (`name`),
|
||
|
KEY `idx_class_extends` (`class_extends`),
|
||
|
KEY `idx_joomla_plugin_group` (`joomla_plugin_group`)
|
||
|
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
|
||
|
|
||
|
CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_group` (
|
||
|
`id` INT(11) NOT NULL AUTO_INCREMENT,
|
||
|
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
|
||
|
`class_extends` INT(11) NOT NULL DEFAULT 0,
|
||
|
`name` VARCHAR(255) NOT NULL DEFAULT '',
|
||
|
`params` text NOT NULL,
|
||
|
`published` TINYINT(3) NOT NULL DEFAULT 1,
|
||
|
`created_by` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`modified_by` INT(10) unsigned 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) unsigned NOT NULL DEFAULT 0,
|
||
|
`checked_out_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
||
|
`version` INT(10) unsigned NOT NULL DEFAULT 1,
|
||
|
`hits` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`access` INT(10) unsigned NOT NULL DEFAULT 0,
|
||
|
`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_name` (`name`),
|
||
|
KEY `idx_class_extends` (`class_extends`)
|
||
|
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;
|