aboutsummaryrefslogtreecommitdiffstats
path: root/UPDATING
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2012-05-19 00:31:32 +0800
committerpawel <pawel@FreeBSD.org>2012-05-19 00:31:32 +0800
commit89cc51176754a26986c5a82a5ffeff5f3383d852 (patch)
tree64ace425b20cdaed78d5fa92d69a5edd1eb42a32 /UPDATING
parent268fdd34dda9de8f9d1b798d9fc62f7462e66d4e (diff)
downloadfreebsd-ports-gnome-89cc51176754a26986c5a82a5ffeff5f3383d852.tar.gz
freebsd-ports-gnome-89cc51176754a26986c5a82a5ffeff5f3383d852.tar.zst
freebsd-ports-gnome-89cc51176754a26986c5a82a5ffeff5f3383d852.zip
Add note about upgrading dns/poweradmin
PR: ports/167841
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