diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2012-05-18 16:31:32 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2012-05-18 16:31:32 +0000 |
commit | 49f70a37298ee274840f40dac75c4cd71e99cd4a (patch) | |
tree | 734f7322b020baf8dc8a02c33715b4ea93d9e600 /UPDATING | |
parent | d1ebb0f8b41cd352e902cf2a0e08479a3988447e (diff) | |
download | ports-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-- | UPDATING | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -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 |