2010-11-16 17:11:06 +00:00
|
|
|
-- Alter table to allow use of ipv6, cname and txt in dns record
|
|
|
|
ALTER TABLE sub_domaines_standby DROP PRIMARY KEY;
|
|
|
|
ALTER TABLE sub_domaines_standby ADD CONSTRAINT pk_SubDomainesStandby PRIMARY KEY (compte,domaine,sub,action,type);
|
|
|
|
|
|
|
|
-- Alter table to allow use of ipv6, cname and txt in dns record
|
|
|
|
ALTER TABLE sub_domaines DROP PRIMARY KEY;
|
|
|
|
ALTER TABLE sub_domaines ADD CONSTRAINT pk_SubDomaines PRIMARY KEY (compte,domaine,sub,type);
|
2010-12-20 15:04:19 +00:00
|
|
|
|
|
|
|
-- Alter table mail_domain to add support of temporary mail
|
|
|
|
ALTER TABLE mail_domain ADD expiration_date datetime DEFAULT null;
|