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, 0 insertions, 11 deletions
diff --git a/mayor-orig/update/pre003392-1-intezmeny.sql b/mayor-orig/update/pre003392-1-intezmeny.sql deleted file mode 100644 index 6b05754c..00000000 --- a/mayor-orig/update/pre003392-1-intezmeny.sql +++ /dev/null @@ -1,11 +0,0 @@ -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(); |