diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-26 10:49:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-09-26 10:49:06 +0200 |
commit | de23a58f27c84ef368016ee5d9a44a3ca683e093 (patch) | |
tree | 5e87c13fbfb56434cd8e7be38a90804ceacf861d /ishtar_common/migrations/0012_auto_20170926_1048.py | |
parent | 0319fd95c37ed8b72aaac78c5a5edeaa31605db5 (diff) | |
download | Ishtar-de23a58f27c84ef368016ee5d9a44a3ca683e093.tar.bz2 Ishtar-de23a58f27c84ef368016ee5d9a44a3ca683e093.zip |
Importer types: make name and slug non nullable
Diffstat (limited to 'ishtar_common/migrations/0012_auto_20170926_1048.py')
-rw-r--r-- | ishtar_common/migrations/0012_auto_20170926_1048.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0012_auto_20170926_1048.py b/ishtar_common/migrations/0012_auto_20170926_1048.py new file mode 100644 index 000000000..598e66112 --- /dev/null +++ b/ishtar_common/migrations/0012_auto_20170926_1048.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-09-26 10:48 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ishtar_common', '0011_auto_20170918_1913'), + ] + + operations = [ + migrations.AlterField( + model_name='importertype', + name='name', + field=models.CharField(default='To be changed', max_length=200, verbose_name='Name'), + preserve_default=False, + ), + migrations.AlterField( + model_name='importertype', + name='slug', + field=models.SlugField(default='to-be-changed', max_length=100, unique=True, verbose_name='Slug'), + preserve_default=False, + ), + ] |