mirror of
https://github.com/correl/codereview.git
synced 2025-01-01 03:00:07 +00:00
20 lines
656 B
Python
Executable file
20 lines
656 B
Python
Executable file
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
class Review(models.Model):
|
|
author = models.ForeignKey(User)
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __unicode__(self):
|
|
return 'Review #{0}'.format(self.pk)
|
|
class Item(models.Model):
|
|
review = models.ForeignKey(Review)
|
|
ref = models.CharField(max_length=40)
|
|
path = models.TextField()
|
|
class Comment(models.Model):
|
|
item = models.ForeignKey(Item)
|
|
author = models.ForeignKey(User)
|
|
created = models.DateTimeField(auto_now_add=True)
|
|
blob = models.IntegerField()
|
|
offset = models.IntegerField()
|
|
text = models.TextField()
|