Skip to content
Sebastian Sellmeier edited this page Apr 7, 2016 · 2 revisions

Upgrading

Updating instructions for 2.1.4:

  1. Download latest tarball from GitHub
  2. Backup old files, replace everything with content from downloaded file
  3. From backup restore only inc/config.inc.php
  4. 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;