diff --git a/newznab/build/nntmux.xml b/newznab/build/nntmux.xml
index 013f5763b..28acf40c4 100755
--- a/newznab/build/nntmux.xml
+++ b/newznab/build/nntmux.xml
@@ -12,6 +12,6 @@
9
- 4400
+ 4401
diff --git a/resources/db/patches/mysql/0111~collections.sql b/resources/db/patches/mysql/0111~collections.sql
index 5d93344a0..e9ca97e43 100644
--- a/resources/db/patches/mysql/0111~collections.sql
+++ b/resources/db/patches/mysql/0111~collections.sql
@@ -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;