datatracker/ietf/person/migrations/0009_auto_20190118_0725.py
Henrik Levkowetz 8e313e4ed5 Adjusted migrations for Python2/3 compatibility.
- Legacy-Id: 16633
2019-08-08 17:11:14 +00:00

29 lines
970 B
Python

# Copyright The IETF Trust 2019, All Rights Reserved
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-01-18 07:25
from __future__ import absolute_import, print_function, unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('person', '0008_auto_20181014_1448'),
]
operations = [
migrations.AlterField(
model_name='email',
name='origin',
field=models.CharField(help_text="The origin of the address: the user's email address, or 'author: DRAFTNAME' if a draft, or 'role: GROUP/ROLE' if a role.", max_length=150),
),
migrations.AlterField(
model_name='historicalemail',
name='origin',
field=models.CharField(help_text="The origin of the address: the user's email address, or 'author: DRAFTNAME' if a draft, or 'role: GROUP/ROLE' if a role.", max_length=150),
),
]