diff options
| author | 2019-10-05 10:37:15 +0200 | |
|---|---|---|
| committer | 2019-10-05 10:37:15 +0200 | |
| commit | 38932ee3bb3ccd41c0e2d79329e2d77fb5995256 (patch) | |
| tree | 13979ffa248fa979591a966e1c9733e859687876 /app/Models/DatabaseDAO.php | |
| parent | 83b0521233771c1b2da617672ea168751ed8016d (diff) | |
MySQL entry content MEDIUMBLOB (#2551)
Fix https://github.com/FreshRSS/FreshRSS/issues/2448
Diffstat (limited to 'app/Models/DatabaseDAO.php')
| -rw-r--r-- | app/Models/DatabaseDAO.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/DatabaseDAO.php b/app/Models/DatabaseDAO.php index 8046e1b5a..f6cd2f756 100644 --- a/app/Models/DatabaseDAO.php +++ b/app/Models/DatabaseDAO.php @@ -8,7 +8,7 @@ class FreshRSS_DatabaseDAO extends Minz_ModelPdo { //MySQL error codes const ER_BAD_FIELD_ERROR = '42S22'; const ER_BAD_TABLE_ERROR = '42S02'; - const ER_TRUNCATED_WRONG_VALUE_FOR_FIELD = '1366'; + const ER_DATA_TOO_LONG = '1406'; //MySQL InnoDB maximum index length for UTF8MB4 //https://dev.mysql.com/doc/refman/8.0/en/innodb-restrictions.html |
