datatracker/ietf/iesg/models.py
Henrik Levkowetz cd030d3b43 Adding copyright notices to all python files
- Legacy-Id: 716
2007-06-27 21:16:34 +00:00

12 lines
345 B
Python

# Copyright The IETF Trust 2007, All Rights Reserved
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'