aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorPawel Pekala <pawel@FreeBSD.org>2012-05-18 16:31:32 +0000
committerPawel Pekala <pawel@FreeBSD.org>2012-05-18 16:31:32 +0000
commit49f70a37298ee274840f40dac75c4cd71e99cd4a (patch)
tree734f7322b020baf8dc8a02c33715b4ea93d9e600 /UPDATING
parentd1ebb0f8b41cd352e902cf2a0e08479a3988447e (diff)
downloadports-49f70a37298ee274840f40dac75c4cd71e99cd4a.tar.gz
ports-49f70a37298ee274840f40dac75c4cd71e99cd4a.zip
Add note about upgrading dns/poweradmin
PR: ports/167841
Notes
Notes: svn path=/head/; revision=296909
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING20
1 files changed, 20 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 3c55a1bfc14a..0f67ff8a0900 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,26 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20120518:
+ AFFECTS: users of dns/poweradmin
+ AUTHOR: Edmondas Girkantas <eg@fbsd.lt>
+
+ Some database changes have been made between version 2.1.4 and 2.1.5,
+ upgrading needs to be done manually by running the following SQL:
+
+ For MySQL users:
+
+ ALTER TABLE `zones` ADD `zone_templ_id` INT( 11 ) NOT NULL;
+ ALTER TABLE zones ENGINE = InnoDB;
+ ALTER TABLE zone_templ ENGINE = InnoDB;
+ ALTER TABLE zone_templ_records ENGINE = InnoDB;
+
+ For PostgreSQL users:
+
+ ALTER TABLE zones ADD zone_templ_id INT DEFAULT NULL;
+
+ Source: https://www.poweradmin.org/trac/wiki/ReleaseNotes/2.1.5
+
20120516:
AFFECTS: users of lang/php5
AUTHOR: ale@FreeBSD.org