summaryrefslogtreecommitdiff
path: root/archaeological_context_records/migrations
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-15 10:01:02 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-03-15 10:01:02 +0100
commit3a6b035c27171805c813d3ec4283d3e0f56a1da4 (patch)
tree56b29b6515cc0855b21432fe965d8773e4368ee5 /archaeological_context_records/migrations
parent791c7c025fc591d443587e6f7eaf6e08d9ea69fc (diff)
downloadIshtar-3a6b035c27171805c813d3ec4283d3e0f56a1da4.tar.bz2
Ishtar-3a6b035c27171805c813d3ec4283d3e0f56a1da4.zip
Container - fix length for different character fields (refs #3993) - fix length for URLs field in sources -> 1000 (refs #3991)
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r--archaeological_context_records/migrations/0018_auto_20180315_1000.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0018_auto_20180315_1000.py b/archaeological_context_records/migrations/0018_auto_20180315_1000.py
new file mode 100644
index 000000000..03ccd847e
--- /dev/null
+++ b/archaeological_context_records/migrations/0018_auto_20180315_1000.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.10 on 2018-03-15 10:00
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_context_records', '0017_auto_20180306_1121'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='contextrecordsource',
+ name='associated_url',
+ field=models.URLField(blank=True, max_length=1000, null=True, verbose_name='Numerical ressource (web address)'),
+ ),
+ ]