Ajout des alter tables de la table sub_domaines

Il manque la colonne id, nécessaire à update_domaines et autres.
This commit is contained in:
Nahuel Angelinetti 2013-07-24 14:49:23 +00:00
parent b4d62cba57
commit 7034a45f61
1 changed files with 5 additions and 0 deletions

View File

@ -44,3 +44,8 @@ CREATE TABLE IF NOT EXISTS `actions` (
-- Alter table domaines to add zone ttl field
ALTER TABLE `domaines` ADD zonettl int(10) unsigned NOT NULL default '86400';
-- Alter table sub_domaines pour contenir au nouveau schema
alter table sub_domaines drop primary key;
alter table sub_domaines add UNIQUE (compte,domaine,sub,type,valeur);
alter table sub_domaines add id bigint(20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;