diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-04 20:26:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-04 20:26:52 +0200 |
commit | 6481407b869af740d0ad9e79f7523effa892b119 (patch) | |
tree | f738e91c6b14241d3d5b6aa053f4f7fb140c376c /archaeological_warehouse/migrations | |
parent | 80de5825151d6ba5843d032f10c7b88109a51a24 (diff) | |
download | Ishtar-6481407b869af740d0ad9e79f7523effa892b119.tar.bz2 Ishtar-6481407b869af740d0ad9e79f7523effa892b119.zip |
Migration update
Diffstat (limited to 'archaeological_warehouse/migrations')
-rw-r--r-- | archaeological_warehouse/migrations/0004_auto_20170804_2024.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/archaeological_warehouse/migrations/0004_auto_20170804_2024.py b/archaeological_warehouse/migrations/0004_auto_20170804_2024.py new file mode 100644 index 000000000..e585da67c --- /dev/null +++ b/archaeological_warehouse/migrations/0004_auto_20170804_2024.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations +import re +import django.core.validators + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_warehouse', '0003_auto_20170802_1557'), + ] + + operations = [ + migrations.AlterField( + model_name='containertype', + name='txt_idx', + field=models.CharField(help_text='The slug is the standardized version of the name. It contains only lowercase letters, numbers and hyphens. Each slug must be unique.', unique=True, max_length=100, verbose_name='Textual ID', validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+$'), "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.", 'invalid')]), + ), + migrations.AlterField( + model_name='warehousedivision', + name='txt_idx', + field=models.CharField(help_text='The slug is the standardized version of the name. It contains only lowercase letters, numbers and hyphens. Each slug must be unique.', unique=True, max_length=100, verbose_name='Textual ID', validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+$'), "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.", 'invalid')]), + ), + migrations.AlterField( + model_name='warehousetype', + name='txt_idx', + field=models.CharField(help_text='The slug is the standardized version of the name. It contains only lowercase letters, numbers and hyphens. Each slug must be unique.', unique=True, max_length=100, verbose_name='Textual ID', validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+$'), "Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens.", 'invalid')]), + ), + ] |