Skip to content

Commit bda5359

Browse files
migration for establishment.pretty_name
1 parent 8c4af4b commit bda5359

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('inspections', '0005_auto_20161103_1951'),
11+
]
12+
13+
operations = [
14+
migrations.AddField(
15+
model_name='establishment',
16+
name='pretty_name',
17+
field=models.CharField(verbose_name='Pretty Name', max_length=255, blank=True),
18+
),
19+
]

0 commit comments

Comments
 (0)