]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Remove duplicate type in pg schema upgrade script 1358/head
authorChristian Hofstaedtler <christian@hofstaedtler.name>
Thu, 10 Apr 2014 15:33:14 +0000 (17:33 +0200)
committerChristian Hofstaedtler <christian@hofstaedtler.name>
Thu, 10 Apr 2014 15:33:14 +0000 (17:33 +0200)
Spotted by azlev.

modules/gpgsqlbackend/nodnssec-3.x_to_3.4_schema.pgsql.sql

index 041d55cb2884fa8febe1ec31c40544b5ebe804be..0b58eac87f04126a2ce6fdff78adec7efa77bfa5 100644 (file)
@@ -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);