Fix patch 111, final fix

This commit is contained in:
DariusIII
2015-11-18 14:40:22 +01:00
parent d105e2681e
commit 215ce29f2c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,6 +12,6 @@
<precommit>9</precommit>
<!-- this is the version of the pre-commit file in githooks NOT the files it calls -->
</hooks>
<commit>4400</commit></git>
<commit>4401</commit></git>
</versions>
</newznab>
@@ -18,7 +18,7 @@ CREATE PROCEDURE update_collections()
IF done
THEN LEAVE alter_loop; END IF;
SET @SQL := CONCAT("ALTER IGNORE TABLE ", tname,
" ADD noise CHAR(32) NOT NULL DEFAULT '' AFTER releaseid COMMENT 'FK to collections table'");
" ADD noise CHAR(32) NOT NULL DEFAULT '' COMMENT 'FK to collections table' AFTER releaseid");
PREPARE _stmt FROM @SQL;
EXECUTE _stmt;
DEALLOCATE PREPARE _stmt;