diff options
author | M.Gergo | 2021-10-28 15:10:04 +0200 |
---|---|---|
committer | M.Gergo | 2021-10-28 15:10:04 +0200 |
commit | 3a1c1811413c635c5ee6e40cb7d497de7313dbe1 (patch) | |
tree | df7591ff0287ef6b96b18da723b1914fd5dc3e20 /mayor-orig/mayor-naplo/update | |
parent | a6185f7270c04c7469ea1a785e5cb35d2c3fdea6 (diff) | |
download | mayor-rev4820.tar.gz mayor-rev4820.zip |
Rev: 4820rev4820
Diffstat (limited to 'mayor-orig/mayor-naplo/update')
-rw-r--r-- | mayor-orig/mayor-naplo/update/pre004819-1-naplo.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mayor-orig/mayor-naplo/update/pre004819-1-naplo.sql b/mayor-orig/mayor-naplo/update/pre004819-1-naplo.sql new file mode 100644 index 00000000..c638832d --- /dev/null +++ b/mayor-orig/mayor-naplo/update/pre004819-1-naplo.sql @@ -0,0 +1,12 @@ +DELIMITER $$ +DROP PROCEDURE IF EXISTS upgrade_database_4819 $$ + +CREATE PROCEDURE upgrade_database_4819() +BEGIN +SET NAMES utf8 COLLATE utf8_hungarian_ci; + +ALTER TABLE `szeEgyediMinosites` MODIFY `egyediMinosites` text CHARACTER SET utf8 COLLATE utf8_hungarian_ci DEFAULT NULL; + +END $$ +DELIMITER ; +CALL upgrade_database_4819(); |