blob: 621b692f3e23e403c78b74324e6821558206ddcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Generated by Django 2.1.2 on 2019-02-20 11:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0030_remove_home_popular'),
]
operations = [
migrations.RemoveField(
model_name='home',
name='more_popular',
),
migrations.AddField(
model_name='home',
name='popular',
field=models.ManyToManyField(related_name='popular', to='jrnl.Entry'),
),
]
|