Removed traces of db_index on db_header and db_title for comms. Turned db_header into textfield.
This commit is contained in:
parent
005b969425
commit
0fa625236e
5 changed files with 134 additions and 6 deletions
|
|
@ -76,7 +76,7 @@ class Msg(SharedMemoryModel):
|
|||
|
||||
# header could be used for meta-info about the message if your system needs it, or as a separate
|
||||
# store for the mail subject line maybe.
|
||||
db_header = models.CharField('header', max_length=128, null=True, blank=True, db_index=True)
|
||||
db_header = models.TextField('header', null=True, blank=True)
|
||||
# the message body itself
|
||||
db_message = models.TextField('messsage')
|
||||
# send date
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue