From: Arsen Stasic Date: Mon, 2 Sep 2013 14:58:36 +0000 (+0200) Subject: Added SQL-Statements for mysql and postgresql X-Git-Tag: rec-3.6.0-rc1~483^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F985%2Fhead;p=thirdparty%2Fpdns.git Added SQL-Statements for mysql and postgresql --- diff --git a/pdns/docs/pdns.xml b/pdns/docs/pdns.xml index bbb1ea6a59..7016641b6b 100755 --- a/pdns/docs/pdns.xml +++ b/pdns/docs/pdns.xml @@ -12290,6 +12290,14 @@ create index recordorder on records (domain_id, ordername text_pattern_ops); The `ip' field in the supermasters table (for the various gsql backends) has been stretched to 64 characters to support IPv6. + For MySQL: + + alter table supermasters modify ip VARCHAR(64); + + For PostgreSQL: + + alter table supermasters alter column ip type VARCHAR(64); + pdnssec secure-zone now creates one KSK and one ZSK, instead of two ZSKs.