From c4a95f32d1153730b09ffbbf19ea775e6bf2f3ba Mon Sep 17 00:00:00 2001 From: M.Gergo Date: Mon, 29 Jul 2019 09:22:06 +0200 Subject: Rev: 4524 --- mayor-orig/mayor-naplo/update/pre004523-1-intezmeny.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mayor-orig/mayor-naplo/update/pre004523-1-intezmeny.sql (limited to 'mayor-orig/mayor-naplo/update') diff --git a/mayor-orig/mayor-naplo/update/pre004523-1-intezmeny.sql b/mayor-orig/mayor-naplo/update/pre004523-1-intezmeny.sql new file mode 100644 index 00000000..c0fd84cd --- /dev/null +++ b/mayor-orig/mayor-naplo/update/pre004523-1-intezmeny.sql @@ -0,0 +1,15 @@ +DELIMITER $$ +DROP PROCEDURE IF EXISTS upgrade_database_4523 $$ + +CREATE PROCEDURE upgrade_database_4523() +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_4523(); -- cgit v1.2.3