This commit is contained in:
Oh
2025-02-04 16:52:43 +02:00
parent ab99fc1336
commit 752a42b2cb
89 changed files with 199 additions and 144 deletions

View File

@@ -3,7 +3,7 @@ SET time_zone = "+00:00";
CREATE TABLE IF NOT EXISTS `#__subformpower_country` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`asset_id` INT(10) unsigned NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`iso` VARCHAR(255) NOT NULL DEFAULT '',
`isothree` VARCHAR(255) NOT NULL DEFAULT '',
@@ -12,17 +12,17 @@ CREATE TABLE IF NOT EXISTS `#__subformpower_country` (
`phonecode` VARCHAR(255) NOT NULL DEFAULT '',
`timezone` VARCHAR(255) NOT NULL DEFAULT '',
`params` TEXT 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,
`published` TINYINT(3) NULL DEFAULT 1,
`created_by` INT unsigned NULL,
`modified_by` INT unsigned,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`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,
`modified` DATETIME,
`checked_out` int unsigned,
`checked_out_time` DATETIME,
`version` INT(10) unsigned NULL DEFAULT 1,
`hits` INT(10) unsigned NULL DEFAULT 0,
`access` INT(10) unsigned NULL DEFAULT 0,
`ordering` INT(11) NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_guid` (`guid`),
@@ -35,23 +35,23 @@ CREATE TABLE IF NOT EXISTS `#__subformpower_country` (
CREATE TABLE IF NOT EXISTS `#__subformpower_currency` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`asset_id` INT(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`asset_id` INT(10) unsigned NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`country` VARCHAR(36) NOT NULL DEFAULT '',
`ext_number` INT(10) NOT NULL DEFAULT 0,
`guid` VARCHAR(36) NOT NULL DEFAULT '',
`symbol` VARCHAR(255) NULL DEFAULT '',
`params` TEXT 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,
`published` TINYINT(3) NULL DEFAULT 1,
`created_by` INT unsigned NULL,
`modified_by` INT unsigned,
`created` DATETIME DEFAULT CURRENT_TIMESTAMP,
`modified` DATETIME DEFAULT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` DATETIME DEFAULT NULL,
`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,
`modified` DATETIME,
`checked_out` int unsigned,
`checked_out_time` DATETIME,
`version` INT(10) unsigned NULL DEFAULT 1,
`hits` INT(10) unsigned NULL DEFAULT 0,
`access` INT(10) unsigned NULL DEFAULT 0,
`ordering` INT(11) NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_ext_number` (`ext_number`),
KEY `idx_country` (`country`),