Skip to content

Commit 1616ff5

Browse files
committed
fix: for backwards compatibility, 191 is max length for a key in mysql56
1 parent 2a00a4e commit 1616ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/BlobCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class BlobCache extends DataObject
2222
protected static $instances = [];
2323

2424
private static $db = [
25-
'Key' => 'Varchar(255)',
25+
'Key' => 'Varchar(191)',
2626
'Contents' => 'Text',
2727
];
2828

0 commit comments

Comments
 (0)