blob: 182187e8b8a72306b8c7819d1507c5cd9865abc8 (
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', '0083_document_index_external_id'),
]
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'),
),
]
|