blob: 8180ffa159384766f0bb03d55b97b5dacc5ca7c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2019-01-22 15:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0084_auto_20190206_1522'),
]
operations = [
migrations.AddField(
model_name='ishtarsiteprofile',
name='use_town_for_geo',
field=models.BooleanField(default=True, verbose_name='Use town to locate when coordinates are missing'),
),
]
|