[fix] Fixes #38 we don't ADD to a .sql in upgrades/ we create a new one for each new release

This commit is contained in:
Benjamin Sonntag 2016-08-27 14:42:29 +02:00
parent 5bae6babfb
commit 6745f82bf6
2 changed files with 3 additions and 3 deletions

View File

@ -204,9 +204,6 @@ UPDATE domaines_type SET create_tmpdir=true, create_targetdir=true WHERE target=
ALTER IGNORE TABLE domaines MODIFY domaine VARCHAR(255);
ALTER IGNORE TABLE sub_domaines MODIFY domaine VARCHAR(255);
-- Should lthe default_subdomains table already exists, prevent the following INSERT INTO to double the entries
ALTER TABLE `default_subdomains` ADD UNIQUE KEY `unique_row` (`sub`,`domain_type`,`domain_type_parameter`,`concerned`);
-- Defaults subdomains to create when a domain is added
CREATE TABLE IF NOT EXISTS `default_subdomains` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,

View File

@ -36,3 +36,6 @@ ALTER TABLE `tld` ENGINE InnoDB;
ALTER TABLE `variable` ENGINE InnoDB;
ALTER TABLE `vm_history` ENGINE InnoDB;
-- Should lthe default_subdomains table already exists, prevent the following INSERT INTO to double the entries
ALTER TABLE `default_subdomains` ADD UNIQUE KEY `unique_row` (`sub`,`domain_type`,`domain_type_parameter`,`concerned`);