Added a migration for the tweaked DocEvent.rev field.
- Legacy-Id: 12979
This commit is contained in:
parent
4daf66d11c
commit
de2356d693
20
ietf/doc/migrations/0025_auto_20170307_0146.py
Normal file
20
ietf/doc/migrations/0025_auto_20170307_0146.py
Normal 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'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue