fix: preserve long prosecutor authority names
All checks were successful
All checks were successful
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("external_data", "0009_arbitration_case_claim_amount"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="prosecutorcheck",
|
||||
name="control_authority",
|
||||
field=models.TextField(verbose_name="контрольный орган"),
|
||||
),
|
||||
]
|
||||
@@ -101,7 +101,7 @@ class ProsecutorCheck(UUIDPrimaryKeyMixin, TimestampMixin, models.Model):
|
||||
_("регистрационный номер"), max_length=64, db_index=True
|
||||
)
|
||||
law_type = models.CharField(_("тип закона"), max_length=32, db_index=True)
|
||||
control_authority = models.CharField(_("контрольный орган"), max_length=255)
|
||||
control_authority = models.TextField(_("контрольный орган"))
|
||||
prosecutor_office = models.CharField(
|
||||
_("прокуратура"), max_length=255, blank=True, default=""
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user