aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/update/pre003282-1-mayor_naplo.sql
diff options
context:
space:
mode:
Diffstat (limited to 'mayor-orig/update/pre003282-1-mayor_naplo.sql')
-rw-r--r--mayor-orig/update/pre003282-1-mayor_naplo.sql16
1 files changed, 16 insertions, 0 deletions
diff --git a/mayor-orig/update/pre003282-1-mayor_naplo.sql b/mayor-orig/update/pre003282-1-mayor_naplo.sql
new file mode 100644
index 00000000..39a27bec
--- /dev/null
+++ b/mayor-orig/update/pre003282-1-mayor_naplo.sql
@@ -0,0 +1,16 @@
+DELIMITER $$
+
+DROP PROCEDURE IF EXISTS upgrade_database_3282 $$
+CREATE PROCEDURE upgrade_database_3282()
+BEGIN
+
+IF NOT EXISTS (
+ SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA='mayor_naplo' and TABLE_NAME='osztalyJelleg' AND COLUMN_NAME='kovOsztalyJellegId'
+) THEN
+ alter table osztalyJelleg add column `kovOsztalyJellegId` tinyint(3) unsigned DEFAULT NULL;
+END IF;
+
+update osztalyJelleg set kovOsztalyJellegId=3 where osztalyJellegId=10;
+END $$
+
+CALL upgrade_database_3282();