This commit is contained in:
Isaac Connor 2017-10-16 08:30:28 -07:00
parent ecd66edbd6
commit c8cb00e57e
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ SET @s = (SELECT IF(
AND table_schema = DATABASE() AND table_schema = DATABASE()
AND column_name = 'Type' AND column_name = 'Type'
) > 0, ) > 0,
"SELECT 'Column Type already exists in Storages'", "SELECT 'Column Type already exists in Storage'",
"ALTER TABLE Storage ADD `Type` enum('local','s3fs') NOT NULL default 'local' AFTER `Name`" "ALTER TABLE Storage ADD `Type` enum('local','s3fs') NOT NULL default 'local' AFTER `Name`"
)); ));