-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#639): update wording for job tech -> type
- Loading branch information
1 parent
3bf4a22
commit d58a439
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
jobs/migrations/0022_alter_jobtype_options_alter_job_job_types_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,27 @@ | ||
# Generated by Django 4.2.16 on 2024-09-13 17:30 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('jobs', '0021_alter_job_creator_alter_job_last_modified_by_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='jobtype', | ||
options={'ordering': ('name',), 'verbose_name': 'job types', 'verbose_name_plural': 'job types'}, | ||
), | ||
migrations.AlterField( | ||
model_name='job', | ||
name='job_types', | ||
field=models.ManyToManyField(blank=True, limit_choices_to={'active': True}, related_name='jobs', to='jobs.jobtype', verbose_name='Job types'), | ||
), | ||
migrations.AlterField( | ||
model_name='job', | ||
name='other_job_type', | ||
field=models.CharField(blank=True, max_length=100, verbose_name='Other job types'), | ||
), | ||
] |
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