blob: 3d8a02c3103e7c7568c8728d86306e2fef1e5ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Generated by Django 2.1.7 on 2019-04-14 21:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('locations', '0017_auto_20190217_1849'),
]
operations = [
migrations.AddField(
model_name='location',
name='description',
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='location',
name='description_html',
field=models.TextField(blank=True),
),
]
|