I forgot to create unicity on table default_subdomaines.
This commit is contained in:
parent
f7b4037649
commit
8ef3efbede
|
@ -686,7 +686,8 @@ CREATE TABLE IF NOT EXISTS `default_subdomains` (
|
||||||
`domain_type_parameter` varchar(255) NOT NULL,
|
`domain_type_parameter` varchar(255) NOT NULL,
|
||||||
`concerned` enum('BOTH','MAIN','SLAVE') NOT NULL DEFAULT 'MAIN',
|
`concerned` enum('BOTH','MAIN','SLAVE') NOT NULL DEFAULT 'MAIN',
|
||||||
`enabled` boolean not null default true,
|
`enabled` boolean not null default true,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `unique_row` (`sub`,`domain_type`,`domain_type_parameter`,`concerned`)
|
||||||
) COMMENT='Contains the defaults subdomains created on domains creation';
|
) COMMENT='Contains the defaults subdomains created on domains creation';
|
||||||
|
|
||||||
INSERT IGNORE INTO `default_subdomains` (`sub`, `domain_type`, `domain_type_parameter`, `concerned`) VALUES
|
INSERT IGNORE INTO `default_subdomains` (`sub`, `domain_type`, `domain_type_parameter`, `concerned`) VALUES
|
||||||
|
|
|
@ -208,7 +208,8 @@ CREATE TABLE IF NOT EXISTS `default_subdomains` (
|
||||||
`domain_type_parameter` varchar(255) NOT NULL,
|
`domain_type_parameter` varchar(255) NOT NULL,
|
||||||
`concerned` enum('BOTH','MAIN','SLAVE') NOT NULL DEFAULT 'MAIN',
|
`concerned` enum('BOTH','MAIN','SLAVE') NOT NULL DEFAULT 'MAIN',
|
||||||
`enabled` boolean not null default true,
|
`enabled` boolean not null default true,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `unique_row` (`sub`,`domain_type`,`domain_type_parameter`,`concerned`)
|
||||||
) COMMENT='Contains the defaults subdomains created on domains creation';
|
) COMMENT='Contains the defaults subdomains created on domains creation';
|
||||||
|
|
||||||
INSERT IGNORE INTO `default_subdomains` (`sub`, `domain_type`, `domain_type_parameter`, `concerned`) VALUES
|
INSERT IGNORE INTO `default_subdomains` (`sub`, `domain_type`, `domain_type_parameter`, `concerned`) VALUES
|
||||||
|
|
Loading…
Reference in New Issue