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"),
|
||||
("force", "force"),
|
||||
],
|
||||
max_length=8,
|
||||
max_length=16,
|
||||
null=True,
|
||||
verbose_name="Sets the OCR mode",
|
||||
),
|
||||
|
@ -83,7 +83,7 @@ class OcrSettings(AbstractSingletonModel):
|
||||
verbose_name=_("Sets the OCR mode"),
|
||||
null=True,
|
||||
blank=True,
|
||||
max_length=8,
|
||||
max_length=16,
|
||||
choices=ModeChoices.choices,
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user