From 3a6b035c27171805c813d3ec4283d3e0f56a1da4 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 15 Mar 2018 10:01:02 +0100 Subject: Container - fix length for different character fields (refs #3993) - fix length for URLs field in sources -> 1000 (refs #3991) --- .../migrations/0018_auto_20180315_1000.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 archaeological_context_records/migrations/0018_auto_20180315_1000.py (limited to 'archaeological_context_records/migrations') 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)'), + ), + ] -- cgit v1.2.3