blob: bd9003946d60f1b829a06ff7abfd3ebba8fbbe03 (
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-11-29 17:55
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0076_migrate_treatmentfile_permissions'),
]
operations = [
migrations.AlterField(
model_name='importertype',
name='is_template',
field=models.BooleanField(default=False, verbose_name='Can be exported'),
),
]
|