Fix max_length on OcrSettings.mode field
This commit is contained in:
parent
9956ab7fa9
commit
2d3bf934d0
@ -92,7 +92,7 @@ class Migration(migrations.Migration):
|
|||||||
("redo", "redo"),
|
("redo", "redo"),
|
||||||
("force", "force"),
|
("force", "force"),
|
||||||
],
|
],
|
||||||
max_length=8,
|
max_length=16,
|
||||||
null=True,
|
null=True,
|
||||||
verbose_name="Sets the OCR mode",
|
verbose_name="Sets the OCR mode",
|
||||||
),
|
),
|
||||||
|
@ -83,7 +83,7 @@ class OcrSettings(AbstractSingletonModel):
|
|||||||
verbose_name=_("Sets the OCR mode"),
|
verbose_name=_("Sets the OCR mode"),
|
||||||
null=True,
|
null=True,
|
||||||
blank=True,
|
blank=True,
|
||||||
max_length=8,
|
max_length=16,
|
||||||
choices=ModeChoices.choices,
|
choices=ModeChoices.choices,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user