You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
8 months ago
|
# Generated by Django 4.2.11 on 2024-03-14 18:50
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('user', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='JobPosting',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('client', models.CharField(max_length=100)),
|
||
|
('spoc', models.CharField(blank=True, max_length=100, null=True)),
|
||
|
('start_date', models.DateField()),
|
||
|
('budget_max', models.DecimalField(decimal_places=2, max_digits=10)),
|
||
|
('job_description', models.TextField()),
|
||
|
('special_instructions', models.CharField(blank=True, max_length=200, null=True)),
|
||
|
('job_id', models.CharField(max_length=20)),
|
||
|
('spoc_2', models.CharField(blank=True, max_length=100, null=True)),
|
||
|
('close_date', models.DateField()),
|
||
|
('location', models.CharField(max_length=100)),
|
||
|
('no_of_posting', models.IntegerField()),
|
||
|
('job_type', models.CharField(max_length=20)),
|
||
|
('header', models.CharField(max_length=200)),
|
||
|
('experience_in_years', models.IntegerField()),
|
||
|
],
|
||
|
),
|
||
|
]
|