welco/welco/sources/mail/migrations/0012_mail_external_id.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
370 B
Python
Raw Permalink Normal View History

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mail', '0011_mail_reference'),
]
operations = [
migrations.AddField(
model_name='mail',
name='external_id',
field=models.CharField(max_length=32, null=True, verbose_name='External Id'),
),
]