aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/update/pre004066-1-naplo.sql
diff options
context:
space:
mode:
Diffstat (limited to 'mayor-orig/update/pre004066-1-naplo.sql')
-rw-r--r--mayor-orig/update/pre004066-1-naplo.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/mayor-orig/update/pre004066-1-naplo.sql b/mayor-orig/update/pre004066-1-naplo.sql
new file mode 100644
index 00000000..c7b97462
--- /dev/null
+++ b/mayor-orig/update/pre004066-1-naplo.sql
@@ -0,0 +1,17 @@
+DELIMITER $$
+DROP PROCEDURE IF EXISTS upgrade_database_4066 $$
+
+CREATE PROCEDURE upgrade_database_4066()
+BEGIN
+SET NAMES utf8 COLLATE utf8_hungarian_ci;
+
+IF NOT EXISTS (
+ SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE() and TABLE_NAME='jegy' AND COLUMN_NAME='modositasDt'
+) THEN
+ ALTER TABLE jegy ADD modositasDt DATETIME NOT NULL;
+ UPDATE jegy set modositasDt = dt WHERE modositasDt = '';
+END IF;
+
+END $$
+DELIMITER ;
+CALL upgrade_database_4066();