aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2022-03-26 10:58:05 +0800
committerJesús <heckyel@hyperbola.info>2022-03-26 10:58:05 +0800
commite4074847240caba1e8d97204432dca8fb9825be9 (patch)
tree28507430a65e930cbc4c79570c494d864ae176bc
parent504f7cd8d0d6cebc5fccc87f1d2eeed17a414c72 (diff)
downloadheroeapi-e4074847240caba1e8d97204432dca8fb9825be9.tar.lz
heroeapi-e4074847240caba1e8d97204432dca8fb9825be9.tar.xz
heroeapi-e4074847240caba1e8d97204432dca8fb9825be9.zip
database/models.py: change max_length to 500HEADmaster
-rw-r--r--database/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/models.py b/database/models.py
index 25947e0..19189d3 100644
--- a/database/models.py
+++ b/database/models.py
@@ -57,7 +57,7 @@ class WorkModel(EmbeddedDocument):
class ConnectionModel(EmbeddedDocument):
groupaffiliation = StringField(required=True, max_length=255)
- relatives = StringField(required=True, max_length=255)
+ relatives = StringField(required=True, max_length=500)
class ImageModel(EmbeddedDocument):