From: Christian Hofstaedtler Date: Thu, 10 Apr 2014 15:33:14 +0000 (+0200) Subject: Remove duplicate type in pg schema upgrade script X-Git-Tag: rec-3.6.0-rc1~71^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1358%2Fhead;p=thirdparty%2Fpdns.git Remove duplicate type in pg schema upgrade script Spotted by azlev. --- diff --git a/modules/gpgsqlbackend/nodnssec-3.x_to_3.4_schema.pgsql.sql b/modules/gpgsqlbackend/nodnssec-3.x_to_3.4_schema.pgsql.sql index 041d55cb28..0b58eac87f 100644 --- a/modules/gpgsqlbackend/nodnssec-3.x_to_3.4_schema.pgsql.sql +++ b/modules/gpgsqlbackend/nodnssec-3.x_to_3.4_schema.pgsql.sql @@ -1,6 +1,6 @@ ALTER table records ADD disabled BOOL DEFAULT 'f'; ALTER table records ADD ordername VARCHAR(255); -ALTER table records ADD auth bool BOOL DEFAULT 't'; +ALTER table records ADD auth BOOL DEFAULT 't'; ALTER table records ALTER COLUMN type TYPE VARCHAR(10); CREATE INDEX recordorder ON records (domain_id, ordername text_pattern_ops);