aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/update/pre004250-1-intezmeny.sql
diff options
context:
space:
mode:
Diffstat (limited to 'mayor-orig/update/pre004250-1-intezmeny.sql')
-rw-r--r--mayor-orig/update/pre004250-1-intezmeny.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/mayor-orig/update/pre004250-1-intezmeny.sql b/mayor-orig/update/pre004250-1-intezmeny.sql
new file mode 100644
index 00000000..704b4782
--- /dev/null
+++ b/mayor-orig/update/pre004250-1-intezmeny.sql
@@ -0,0 +1,13 @@
+DELIMITER $$
+DROP PROCEDURE IF EXISTS upgrade_database_4250 $$
+
+CREATE PROCEDURE upgrade_database_4250()
+BEGIN
+SET NAMES utf8 COLLATE utf8_hungarian_ci;
+
+IF NOT EXISTS (SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE() and TABLE_NAME='hirnokFeliratkozas' AND COLUMN_NAME='hirnokFeliratkozasId') THEN
+ ALTER TABLE hirnokFeliratkozas ADD COLUMN `hirnokFeliratkozasId` int(11) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
+END IF;
+END $$
+DELIMITER ;
+CALL upgrade_database_4250();