11 lines
565 B
SQL
11 lines
565 B
SQL
-- 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);
|
|
|
|
-- Alter table mail_domain to add support of temporary mail
|
|
ALTER TABLE mail_domain ADD expiration_date datetime DEFAULT null;
|