blob: 9934bf47f3d2b04d832bd9e0ed77efa8677cf47a (
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 2018-04-23 18:57
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0048_auto_20180423_1838'),
]
operations = [
migrations.AlterField(
model_name='ishtarimage',
name='name',
field=models.CharField(blank=True, max_length=250, null=True, verbose_name='Name'),
),
]
|