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