[Python-checkins] r85185 - tracker/instances/python-dev/rietveld/roundup_helper/models.py
martin.v.loewis
python-checkins at python.org
Sat Oct 2 20:18:44 CEST 2010
Author: martin.v.loewis
Date: Sat Oct 2 20:18:43 2010
New Revision: 85185
Log:
Wrap Issue and File.
Modified:
tracker/instances/python-dev/rietveld/roundup_helper/models.py
Modified: tracker/instances/python-dev/rietveld/roundup_helper/models.py
==============================================================================
--- tracker/instances/python-dev/rietveld/roundup_helper/models.py (original)
+++ tracker/instances/python-dev/rietveld/roundup_helper/models.py Sat Oct 2 20:18:43 2010
@@ -13,3 +13,19 @@
_address = models.CharField()
class Meta:
db_table = '_user'
+
+class File(models.Model):
+ _creator = models.IntegerField()
+ _creation = models.DateTimeField()
+ _branch = models.CharField()
+ _revision = models.CharField()
+ _patchset = models.CharField()
+ class Meta:
+ db_table = '_file'
+
+class Issue(models.Model):
+ _creator = models.IntegerField()
+ _creation = models.DateTimeField()
+ _status = models.IntegerField()
+ class Meta:
+ db_table = '_issue'
More information about the Python-checkins
mailing list