Skip to content

Commit 891ee4b

Browse files
committed
Fix long-ago broken model surgery.
- Legacy-Id: 309
1 parent 2c24715 commit 891ee4b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/announcements/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class Admin:
2727

2828
class AnnouncedTo(models.Model):
2929
announced_to_id = models.AutoField(primary_key=True)
30-
announced_to = models.CharField(blank=True, maxlength=255)
31-
email = models.CharField(blank=True, maxlength=255)
30+
announced_to = models.CharField(blank=True, maxlength=255, db_column='announced_to_value')
31+
email = models.CharField(blank=True, maxlength=255, db_column='announced_to_email')
3232
def __str__(self):
3333
return self.announced_to
3434
class Meta:

0 commit comments

Comments
 (0)