Added a migration for the tweaked DocEvent.rev field.

- Legacy-Id: 12979
This commit is contained in:
Henrik Levkowetz 2017-03-07 09:48:22 +00:00
parent 4daf66d11c
commit de2356d693

View file

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-03-07 01:46
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('doc', '0024_del_docevent_subclass_revision'),
]
operations = [
migrations.AlterField(
model_name='docevent',
name='rev',
field=models.CharField(blank=True, max_length=16, null=True, verbose_name=b'revision'),
),
]