xiaomlove / nexusphp

A private tracker application base on NexusPHP
https://nexusphp.org
GNU General Public License v2.0
885 stars 180 forks source link

fix claim messages content overflow #186

Closed Rey50 closed 1 year ago

Rey50 commented 1 year ago

当种子信息过长时,认领结算短信常常会丢失内容,这是因为TEXT最多只允许65535个字符,因此相关数据类型可以由TEXT更改为MEDIUMTEXT以解决TEXT溢出的问题。

As we know,when claim list become too long,claim messages will lose part of the content.It's not a rare situation.It's cauesed by the TEXT type overflow.TEXT type only allow 65535 characters.So we can change it to MEDIUMTEXT type.