Skip to content
Snippets Groups Projects
Commit c28041d7 authored by Karol Lamparski's avatar Karol Lamparski Committed by Tymoteusz Motylewski
Browse files

[BUGFIX] Change Indexed Search index_phash.data_filename column length

Make database field index_phash.data_filename longer, because varchar(255) was not enough for some URLs.

Resolves: #77970
Releases: master, 7.6
Change-Id: I6cea9c2f9debecbf482bc78cd4a2867d8f9c5e47
Reviewed-on: https://review.typo3.org/50126


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarTomasz Stępniak <stempl88@gmail.com>
Tested-by: default avatarTomasz Stępniak <stempl88@gmail.com>
Reviewed-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
parent a43713ec
Branches
Tags
No related merge requests found
......@@ -6,7 +6,7 @@ CREATE TABLE index_phash (
phash int(11) DEFAULT '0' NOT NULL,
phash_grouping int(11) DEFAULT '0' NOT NULL,
cHashParams blob,
data_filename varchar(255) DEFAULT '' NOT NULL,
data_filename varchar(1024) DEFAULT '' NOT NULL,
data_page_id int(11) unsigned DEFAULT '0' NOT NULL,
data_page_reg1 int(11) unsigned DEFAULT '0' NOT NULL,
data_page_type int(11) unsigned DEFAULT '0' NOT NULL,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment