forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
v2.1.5
Sebastian Sellmeier edited this page Apr 7, 2016
·
2 revisions
- Download latest tarball from GitHub
- Backup old files, replace everything with content from downloaded file
- From backup restore only inc/config.inc.php
- Update database structure:
MySQL
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;
PostgreSQL
ALTER TABLE zones ADD zone_templ_id INT DEFAULT NULL;