blob: 41c532470e0612c8ccc1357bfcb21cd74e8f00a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 2.1.7 on 2019-03-15 18:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0038_remove_enjoyitem_entry'),
]
operations = [
migrations.AddField(
model_name='enjoyitem',
name='order',
field=models.IntegerField(default=1),
),
]
|