We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c24715 commit 891ee4bCopy full SHA for 891ee4b
1 file changed
ietf/announcements/models.py
@@ -27,8 +27,8 @@ class Admin:
27
28
class AnnouncedTo(models.Model):
29
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)
+ announced_to = models.CharField(blank=True, maxlength=255, db_column='announced_to_value')
+ email = models.CharField(blank=True, maxlength=255, db_column='announced_to_email')
32
def __str__(self):
33
return self.announced_to
34
class Meta:
0 commit comments