Added a migration to go with the model changes in [11668]
- Legacy-Id: 11724
Note: SVN reference [11668] has been migrated to Git commit 0d044399e5
This commit is contained in:
parent
b420ef220c
commit
df28afe72c
26
ietf/ipr/migrations/0008_auto_20160720_0218.py
Normal file
26
ietf/ipr/migrations/0008_auto_20160720_0218.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('ipr', '0007_auto_20150930_0258'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='iprdisclosurebase',
|
||||
name='submitter_email',
|
||||
field=models.EmailField(max_length=75, blank=True),
|
||||
preserve_default=True,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='iprdisclosurebase',
|
||||
name='submitter_name',
|
||||
field=models.CharField(max_length=255, blank=True),
|
||||
preserve_default=True,
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue