diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-12 18:43:16 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-11-12 18:43:16 +0100 |
commit | 1e0ca1529f9d03acfbc26a0573c59e9ab6a327f1 (patch) | |
tree | 5cb6a189f1e6ac8ec9f37dd8c473ccffe24c1997 /archaeological_warehouse/migrations | |
parent | adecc5c8c38daac40f121371665a13555de7d333 (diff) | |
download | Ishtar-1e0ca1529f9d03acfbc26a0573c59e9ab6a327f1.tar.bz2 Ishtar-1e0ca1529f9d03acfbc26a0573c59e9ab6a327f1.zip |
Ref is not mandatory for container type
Diffstat (limited to 'archaeological_warehouse/migrations')
-rw-r--r-- | archaeological_warehouse/migrations/0025_auto_20181112_1842.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/archaeological_warehouse/migrations/0025_auto_20181112_1842.py b/archaeological_warehouse/migrations/0025_auto_20181112_1842.py new file mode 100644 index 000000000..174ed9a48 --- /dev/null +++ b/archaeological_warehouse/migrations/0025_auto_20181112_1842.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.10 on 2018-11-12 18:42 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_warehouse', '0024_auto_20181017_1854'), + ] + + operations = [ + migrations.AlterField( + model_name='containertype', + name='reference', + field=models.CharField(blank=True, max_length=300, null=True, verbose_name='Ref.'), + ), + ] |