-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
956fd1d
commit 068279b
Showing
2 changed files
with
62 additions
and
3 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
payroll/migrations/0011_alter_vacancy_appointee_name_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Generated by Django 4.2.16 on 2024-11-18 13:52 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("payroll", "0010_alter_vacancy_appointee_name_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="vacancy", | ||
name="appointee_name", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
validators=[ | ||
django.core.validators.RegexValidator( | ||
message="Only letters, spaces, - and ' are allowed.", | ||
regex="^[a-zA-Z '-]*$", | ||
) | ||
], | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="vacancy", | ||
name="hiring_manager", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
validators=[ | ||
django.core.validators.RegexValidator( | ||
message="Only letters, spaces, - and ' are allowed.", | ||
regex="^[a-zA-Z '-]*$", | ||
) | ||
], | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="vacancy", | ||
name="hr_ref", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=255, | ||
null=True, | ||
validators=[ | ||
django.core.validators.RegexValidator( | ||
message="Only letters, spaces, - and ' are allowed.", | ||
regex="^[a-zA-Z '-]*$", | ||
) | ||
], | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters