diff options
author | M.Gergo | 2021-06-11 03:35:05 +0200 |
---|---|---|
committer | M.Gergo | 2021-06-11 03:35:05 +0200 |
commit | 1467d3ca575dabdbc7e0255a671457d0467f422d (patch) | |
tree | da231b68bcc8b2117aa09ff20094da2c579d4c60 /mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql | |
parent | fd57851114a515c1a35c29e733181afb7a4ee6ca (diff) | |
download | mayor-rev4790.tar.gz mayor-rev4790.zip |
Rev: 4790rev4790
Diffstat (limited to 'mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql')
-rw-r--r-- | mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql b/mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql new file mode 100644 index 00000000..cfb21fda --- /dev/null +++ b/mayor-orig/mayor-naplo/update/pre004789-1-intezmeny.sql @@ -0,0 +1,15 @@ +DELIMITER $$ +DROP PROCEDURE IF EXISTS upgrade_database_4789 $$ + +CREATE PROCEDURE upgrade_database_4789() +BEGIN +SET NAMES utf8 COLLATE utf8_hungarian_ci; + +-- https://tasz.hu/cikkek/igy-vedd-meg-a-gyermeked-az-allamositastol + +ALTER TABLE `diakJogviszony` MODIFY `statusz` enum('felvételt nyert','jogviszonyban van','magántanuló','egyéni munkarend','vendégtanuló','jogviszonya felfüggesztve','jogviszonya lezárva') COLLATE utf8_hungarian_ci NOT NULL; +ALTER TABLE `diak` MODIFY `statusz` enum('felvételt nyert','jogviszonyban van','magántanuló','egyéni munkarend','vendégtanuló','jogviszonya felfüggesztve','jogviszonya lezárva') COLLATE utf8_hungarian_ci NOT NULL; + +END $$ +DELIMITER ; +CALL upgrade_database_4789(); |