datatracker/ietf/iesg/models.py
Henrik Levkowetz 5872696834 Moving ietf to trunk/ietf
[[Split portion of a mixed commit.]]
 - Legacy-Id: 96.1
2007-05-04 12:37:28 +00:00

10 lines
291 B
Python

from django.db import models
class TelechatMinutes(models.Model):
telechat_date = models.DateField(null=True, blank=True)
telechat_minute = models.TextField(blank=True)
exported = models.IntegerField(null=True, blank=True)
class Meta:
db_table = 'telechat_minutes'