From 8be8612a6f727846f5c83cc41791bb0485a97266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Fri, 25 Mar 2022 05:21:40 +0800 Subject: Fix base string long --- database/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'database/models.py') diff --git a/database/models.py b/database/models.py index fe87e18..4abd58c 100644 --- a/database/models.py +++ b/database/models.py @@ -51,8 +51,8 @@ class AppearanceModel(EmbeddedDocument): class WorkModel(EmbeddedDocument): - occupation = StringField(required=True, max_length=100) - base = StringField(required=True, max_length=100) + occupation = StringField(required=True, max_length=200) + base = StringField(required=True, max_length=200) class ConnectionModel(EmbeddedDocument): -- cgit v1.2.3