mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
adds formatting updates and testing updates
This commit is contained in:
parent
83ee3bc4be
commit
ea17f6df0b
7 changed files with 35 additions and 19 deletions
|
|
@ -6,13 +6,19 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('django_mailbox', '0008_auto_20190219_1553'),
|
||||
("django_mailbox", "0008_auto_20190219_1553"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='message',
|
||||
name='message_id',
|
||||
field=models.CharField(blank=None, max_length=255, null=None, unique=True, verbose_name='Message ID'),
|
||||
model_name="message",
|
||||
name="message_id",
|
||||
field=models.CharField(
|
||||
blank=None,
|
||||
max_length=255,
|
||||
null=None,
|
||||
unique=True,
|
||||
verbose_name="Message ID",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue