diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2013-02-04 01:23:33 +0000 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2013-02-04 01:23:33 +0000 |
commit | 004e16dc2bd6cc1e4198d4bd07eaf19b9cc98d19 (patch) | |
tree | 906f37c5e5889e929ad63561645083615660406c | |
parent | 2ea41f5ee10856288adff5000994880651424326 (diff) | |
download | FreeBSD-ports-004e16dc2bd6cc1e4198d4bd07eaf19b9cc98d19.zip FreeBSD-ports-004e16dc2bd6cc1e4198d4bd07eaf19b9cc98d19.tar.gz |
- Add note about upgrading dns/poweradmin
PR: 175699
-rw-r--r-- | UPDATING | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -5,6 +5,23 @@ 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. +20130204: + AFFECTS: users of dns/poweradmin + AUTHOR: Edmondas Girkantas <eg@fbsd.lt> + + Some database changes have been made between version 2.1.5 and 2.1.6, + upgrading needs to be done manually by running the following SQL: + + For MySQL users: + + ALTER TABLE users MODIFY username VARCHAR(64) NOT NULL DEFAULT '0'; + ALTER TABLE users MODIFY password VARCHAR(128) NOT NULL DEFAULT '0'; + + For PostgreSQL users: + + ALTER TABLE users ALTER COLUMN username TYPE VARCHAR(64); + ALTER TABLE users ALTER COLUMN password TYPE VARCHAR(128); + 20130203: AFFECTS: users of KDE SC 4 AUTHOR: kde@FreeBSD.org |