welco/welco/sources/mail/migrations/0009_mail_scanner_category.py

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

17 lines
369 B
Python
Raw Normal View History

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('mail', '0008_remove_mail_mail_number'),
]
operations = [
migrations.AddField(
model_name='mail',
name='scanner_category',
field=models.CharField(max_length=100, null=True, blank=True),
),
]