diff options
Diffstat (limited to 'mayor-orig/update/pre004232-1-mayor_portal.sql')
-rw-r--r-- | mayor-orig/update/pre004232-1-mayor_portal.sql | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/mayor-orig/update/pre004232-1-mayor_portal.sql b/mayor-orig/update/pre004232-1-mayor_portal.sql deleted file mode 100644 index 60a37f94..00000000 --- a/mayor-orig/update/pre004232-1-mayor_portal.sql +++ /dev/null @@ -1,16 +0,0 @@ -DELIMITER $$ -DROP PROCEDURE IF EXISTS upgrade_database_4232 $$ -CREATE PROCEDURE upgrade_database_4232() -BEGIN - -SET NAMES utf8 COLLATE utf8_hungarian_ci; - -IF EXISTS ( - SELECT * FROM information_schema.TABLES WHERE TABLE_SCHEMA=DATABASE() and TABLE_NAME='nevnap' -) THEN - update nevnap set nevnap='Gyöngyi' where honap=10 and nap=23; -END IF; - -END $$ -DELIMITER ; -CALL upgrade_database_4232(); |