create changelog and migration script for next version

This commit is contained in:
Manuel Raynaud
2014-03-03 17:42:12 +01:00
parent 06539ad9bf
commit 56663c85a1
2 changed files with 11 additions and 0 deletions

8
install/update/2.0.0.sql Normal file
View File

@@ -0,0 +1,8 @@
# This is a fix for InnoDB in MySQL >= 4.1.x
# It "suspends judgement" for fkey relationships until are tables are set.
SET FOREIGN_KEY_CHECKS = 0;
UPDATE `config` SET `value`='2.0.0' WHERE `name`='thelia_version';
UPDATE `config` SET `value`='' WHERE `name`='thelia_extra_version';
SET FOREIGN_KEY_CHECKS = 1;