diff options
author | Jesús <heckyel@hyperbola.info> | 2022-03-25 05:21:40 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-03-25 05:21:40 +0800 |
commit | 8be8612a6f727846f5c83cc41791bb0485a97266 (patch) | |
tree | 62142e3e7d30e4fce6d1e70098c21045a448623e /database/models.py | |
parent | 32f39b28d952e837f50ddd3cc69f6813f3a2bf26 (diff) | |
download | heroeapi-8be8612a6f727846f5c83cc41791bb0485a97266.tar.lz heroeapi-8be8612a6f727846f5c83cc41791bb0485a97266.tar.xz heroeapi-8be8612a6f727846f5c83cc41791bb0485a97266.zip |
Fix base string long
Diffstat (limited to 'database/models.py')
-rw-r--r-- | database/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): |