1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-08-08 11:16
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0063_auto_20180807_1824'),
]
operations = [
migrations.AddField(
model_name='historicalorganization',
name='cached_label',
field=models.TextField(blank=True, db_index=True, null=True, verbose_name='Cached name'),
),
migrations.AddField(
model_name='organization',
name='cached_label',
field=models.TextField(blank=True, db_index=True, null=True, verbose_name='Cached name'),
),
]
|