blob: 904b6c21b9d8fbad5eb4b3c59af898772b676aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.1 on 2020-10-27 21:05
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('jrnl', '0052_entry_new_field_notes'),
]
operations = [
migrations.RenameField(
model_name='entry',
old_name='new_field_notes',
new_name='field_notes',
),
]
|