Skip to content

Commit

Permalink
[BUGFIX] Increase size of DB field filelink_sorting
Browse files Browse the repository at this point in the history
The field ´filelink_sorting` of the DB table tt_content contains
the sorting field. Its size should be set to 64 characters to be able
to use any column name for sorting.

Resolves: #92294
Releases: master, 10.4
Change-Id: Iea9f7fcc42902222f6ea2683483bb4bddf5d25e6
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65737
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Benni Mack <benni@typo3.org>
Reviewed-by: Benni Mack <benni@typo3.org>
  • Loading branch information
georgringer authored and bmack committed Sep 15, 2020
1 parent a614783 commit 4ac31bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/frontend/ext_tables.sql
Expand Up @@ -122,7 +122,7 @@ CREATE TABLE tt_content (
linkToTop tinyint(3) unsigned DEFAULT '0' NOT NULL,
file_collections text,
filelink_size tinyint(3) unsigned DEFAULT '0' NOT NULL,
filelink_sorting varchar(17) DEFAULT '' NOT NULL,
filelink_sorting varchar(64) DEFAULT '' NOT NULL,
filelink_sorting_direction varchar(4) DEFAULT '' NOT NULL,
target varchar(30) DEFAULT '' NOT NULL,
date int(10) unsigned DEFAULT '0' NOT NULL,
Expand Down

0 comments on commit 4ac31bb

Please sign in to comment.