-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[471] Missed update for
armory_instance_template
table (rename some…
… field).
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?php | ||
define('ARMORY_REVISION', 470); | ||
define('DB_VERSION', 'armory_r467'); | ||
define('ARMORY_REVISION', 471); | ||
define('DB_VERSION', 'armory_r471'); | ||
define('CONFIG_VERSION', '2001201101'); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
UPDATE `armory_db_version` SET `version` = 'armory_r471'; | ||
ALTER TABLE `armory_instance_template` CHANGE `name_fr_fr` `name_es_es_tmp` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci; | ||
ALTER TABLE `armory_instance_template` CHANGE `name_es_es` `name_fr_fr` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL; | ||
ALTER TABLE `armory_instance_template` CHANGE `name_es_es_tmp` `name_es_es` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL; |