19 lines
525 B
Python
19 lines
525 B
Python
# Generated by Django 4.2.20 on 2026-03-27 05:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('jobs', '0002_jobfavorite'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='job',
|
|
name='education',
|
|
field=models.CharField(choices=[('博士', '博士'), ('硕士', '硕士'), ('本科及以下', '本科及以下')], default='本科及以下', max_length=20, verbose_name='学历要求'),
|
|
),
|
|
]
|