23 lines
497 B
Python
23 lines
497 B
Python
# Generated by Django 2.2.7 on 2019-11-25 09:45
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('przyrost', '0003_auto_20191125_1043'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='post',
|
|
name='authors',
|
|
),
|
|
migrations.AddField(
|
|
model_name='post',
|
|
name='authors',
|
|
field=models.ManyToManyField(to='przyrost.User'),
|
|
),
|
|
]
|