26 lines
676 B
Python
26 lines
676 B
Python
# Generated by Django 5.2.7 on 2025-11-09 19:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0011_remove_customercv_job_title_customercv_job_titles_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='vacancy',
|
|
name='company_name',
|
|
field=models.CharField(default='test', max_length=255),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='vacancy',
|
|
name='requirements',
|
|
field=models.TextField(default='test'),
|
|
preserve_default=False,
|
|
),
|
|
]
|