blob: 7b511862b66c2d7ecc74b7186052e572455eecca (
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-03 16:10
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0034_remove_entry_field_notes'),
]
operations = [
migrations.RenameField(
model_name='entry',
old_name='field_notes_two',
new_name='field_notes',
),
]
|