1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-10 06:48:19 +02:00

Adding the south migration

This commit is contained in:
Alex Lovell-Troy 2014-05-13 02:07:30 +00:00
parent a59a10567c
commit 2a0f4975bb
2 changed files with 67 additions and 2 deletions

View file

@ -350,8 +350,8 @@ class Message(models.Model):
max_length=255,
)
to_header = models.TextField()
cc_header = models.TextField()
bcc_header = models.TextField()
cc_header = models.TextField(default='')
bcc_header = models.TextField(default='')
outgoing = models.BooleanField(
default=False,
blank=True,