mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-Nonebot.git
synced 2026-04-01 22:04:51 +00:00
修复运势长度超限无法发送的问题
This commit is contained in:
parent
417ace964a
commit
99790a7f98
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ class QrFortuneLog(Model):
|
|||
fortune_summary = fields.CharField(max_length=64, description="运势总结", null=True)
|
||||
lucky_star = fields.CharField(max_length=64, description="幸运星", null=True)
|
||||
sign_text = fields.CharField(max_length=64, description="签文", null=True)
|
||||
un_sign_text = fields.CharField(max_length=64, description="解签", null=True)
|
||||
un_sign_text = fields.CharField(max_length=100, description="解签", null=True)
|
||||
user_id = fields.CharField(max_length=64, description="用户id", null=True)
|
||||
extract_time = fields.DateField(description="获取签文日期", null=True)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue