20 lines
477 B
Python
20 lines
477 B
Python
|
# Generated by Django 3.1.4 on 2021-01-16 08:17
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('jobs', '0009_auto_20210114_1950'),
|
||
|
('users', '0004_invite'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='profile',
|
||
|
name='wish_list',
|
||
|
field=models.ManyToManyField(blank=True, default=None, related_name='wish_list', to='jobs.Job'),
|
||
|
),
|
||
|
]
|