mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
fix(migrations): PRWLR-4869 add missing error_messages field (#65)
This commit is contained in:
committed by
GitHub
parent
fc19fbac68
commit
31c035eb52
@@ -159,7 +159,12 @@ class Migration(migrations.Migration):
|
||||
(
|
||||
"email",
|
||||
models.EmailField(
|
||||
max_length=254, unique=True, help_text="Case insensitive"
|
||||
error_messages={
|
||||
"unique": "Please check the email address and try again."
|
||||
},
|
||||
help_text="Case insensitive",
|
||||
max_length=254,
|
||||
unique=True,
|
||||
),
|
||||
),
|
||||
("company_name", models.CharField(max_length=150, blank=True)),
|
||||
|
||||
Reference in New Issue
Block a user