27 lines
704 B
Python
27 lines
704 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('managemails', '0003_auto_20150124_2029'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='mailaddress',
|
||
|
name='domain',
|
||
|
field=models.ForeignKey(verbose_name='domain', to='domains.MailDomain'),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='mailaddress',
|
||
|
name='localpart',
|
||
|
field=models.CharField(max_length=128, verbose_name='local part'),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|