From 4b6b59c8a750fe6408d5d0cbc0e584a737dd12c1 Mon Sep 17 00:00:00 2001 From: M.Gergo Date: Mon, 2 Sep 2019 02:25:31 +0200 Subject: Rev: 4535 --- .../mayor-naplo/update/pre004531-1-intezmeny.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql (limited to 'mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql') diff --git a/mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql b/mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql new file mode 100644 index 00000000..c616f6d4 --- /dev/null +++ b/mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql @@ -0,0 +1,19 @@ +DELIMITER $$ +DROP PROCEDURE IF EXISTS upgrade_database_4531 $$ + +CREATE PROCEDURE upgrade_database_4531() +BEGIN +SET NAMES utf8 COLLATE utf8_hungarian_ci; + +IF NOT EXISTS (SELECT * FROM information_schema.TABLES WHERE TABLE_SCHEMA=DATABASE() and TABLE_NAME='cimke') THEN + CREATE TABLE `cimke` ( + `cimkeId` int(10) unsigned NOT NULL AUTO_INCREMENT, + `cimkeLeiras` varchar(16) NOT NULL, + PRIMARY KEY (`cimkeId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_hungarian_ci; +END IF; + + +END $$ +DELIMITER ; +CALL upgrade_database_4531(); -- cgit v1.2.3