diff options
Diffstat (limited to 'mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql')
-rw-r--r-- | mayor-orig/mayor-naplo/update/pre004531-1-intezmeny.sql | 19 |
1 files changed, 19 insertions, 0 deletions
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(); |