diff options
Diffstat (limited to 'mayor-orig/update/pre003392-1-intezmeny.sql')
-rw-r--r-- | mayor-orig/update/pre003392-1-intezmeny.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mayor-orig/update/pre003392-1-intezmeny.sql b/mayor-orig/update/pre003392-1-intezmeny.sql new file mode 100644 index 00000000..6b05754c --- /dev/null +++ b/mayor-orig/update/pre003392-1-intezmeny.sql @@ -0,0 +1,11 @@ +DELIMITER $$ +DROP PROCEDURE IF EXISTS upgrade_database_3392 $$ +CREATE PROCEDURE upgrade_database_3392() +BEGIN +IF NOT EXISTS ( + SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA=DATABASE() and TABLE_NAME='zaradek' AND COLUMN_NAME='iktatoszam' +) THEN + ALTER TABLE zaradek ADD iktatoszam VARCHAR(60) not null default ''; +END IF; +END $$ +CALL upgrade_database_3392(); |