From 70972cafe77cecd53ef584513885a5a21133c053 Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" <J.S.Caux@uva.nl> Date: Tue, 23 Oct 2018 21:50:38 +0200 Subject: [PATCH] Add missing migration --- .../migrations/0048_auto_20181023_2150.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 journals/migrations/0048_auto_20181023_2150.py diff --git a/journals/migrations/0048_auto_20181023_2150.py b/journals/migrations/0048_auto_20181023_2150.py new file mode 100644 index 000000000..95b790ba3 --- /dev/null +++ b/journals/migrations/0048_auto_20181023_2150.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2018-10-23 19:50 +from __future__ import unicode_literals + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('journals', '0047_auto_20181023_0829'), + ] + + operations = [ + migrations.AlterField( + model_name='publication', + name='doi_label', + field=models.CharField(db_index=True, max_length=200, unique=True, validators=[django.core.validators.RegexValidator('^(SciPostPhysProc|SciPostPhysSel|SciPostPhysLectNotes|SciPostPhysCodeb|SciPostPhysComm|SciPostPhys)(.\\w+(.[0-9]+(.[0-9]{3,})?)?)?$', 'Only valid DOI expressions are allowed: `[a-zA-Z]+(.\\w+(.[0-9]+(.[0-9]{3,})?)?)?`')]), + ), + ] -- GitLab