Skip to content

Commit

Permalink
add some migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Mubashir12392 committed Mar 15, 2023
1 parent 4d09a90 commit c655916
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions recruiters/migrations/0002_jobpost_job_timing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-03-15 19:07

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('recruiters', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='jobpost',
name='job_timing',
field=models.CharField(choices=[('Full_Time', 'Full Time'), ('Part_Time', 'Part Time'), ('Contract', 'Contract')], default='Full Time', max_length=30),
),
]

0 comments on commit c655916

Please sign in to comment.