Update the +1 patch file

This commit is contained in:
DariusIII
2016-05-23 09:26:52 +02:00
parent ba583e4399
commit 066ea9595a
2 changed files with 5 additions and 4 deletions
+1
View File
@@ -1,4 +1,5 @@
2016-05-22 DariusIII
* Upd: Update the +1 patch file
* Upd: Update NameFixer and ReleaseExtra classes.
* Upd: Add index to release_unique table to speed up processing, use querylimit in fixNamesWithMedia function.
2016-05-21 DariusIII
@@ -1,9 +1,9 @@
DROP TABLE IF EXISTS release_unique;
CREATE TABLE release_unique (
DROP TABLE IF EXISTS release_unique;
CREATE TABLE release_unique (
releases_id INT(11) UNSIGNED NOT NULL COMMENT 'FK to releases.id.',
uniqueid BINARY(16) NOT NULL COMMENT 'Unique_ID from mediainfo.',
uniqueid BINARY(16) NOT NULL DEFAULT '0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0' COMMENT 'Unique_ID from mediainfo.',
PRIMARY KEY (releases_id),
KEY ix_release_unique_uniqueid(uniqueid)
INDEX ix_release_unique_uniqueid(uniqueid)
)
ENGINE = MyISAM
DEFAULT CHARSET = utf8