blob: f47b6e9b7bc6d3ce877ab972f16cecbe7b418817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 2.0.1 on 2018-06-29 17:39
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('locations', '0005_auto_20180629_1714'),
]
operations = [
migrations.RenameField(
model_name='location',
old_name='childof',
new_name='parent',
),
]
|