2012-06-07 16:08:47 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2009-04-02 04:32:48 +00:00
|
|
|
from django.db import models
|
2012-08-12 10:32:08 +00:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2009-04-02 04:32:48 +00:00
|
|
|
|
2011-10-13 21:34:56 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2009-04-02 04:32:48 +00:00
|
|
|
class Reporter(models.Model):
|
|
|
|
first_name = models.CharField(max_length=30)
|
|
|
|
last_name = models.CharField(max_length=30)
|
|
|
|
email = models.EmailField()
|
2012-02-11 20:05:50 +00:00
|
|
|
facebook_user_id = models.BigIntegerField(null=True)
|
2012-12-17 21:35:35 +00:00
|
|
|
raw_data = models.BinaryField(null=True)
|
2009-04-02 04:32:48 +00:00
|
|
|
|
2012-04-30 11:05:30 +00:00
|
|
|
class Meta:
|
|
|
|
unique_together = ('first_name', 'last_name')
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2012-06-07 16:08:47 +00:00
|
|
|
return "%s %s" % (self.first_name, self.last_name)
|
2009-04-02 04:32:48 +00:00
|
|
|
|
2012-11-04 18:16:06 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2009-04-02 04:32:48 +00:00
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateField()
|
|
|
|
reporter = models.ForeignKey(Reporter)
|
2013-01-28 09:17:56 +00:00
|
|
|
response_to = models.ForeignKey('self', null=True)
|
2009-04-02 04:32:48 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2009-04-02 04:32:48 +00:00
|
|
|
return self.headline
|
|
|
|
|
|
|
|
class Meta:
|
2012-04-30 11:05:30 +00:00
|
|
|
ordering = ('headline',)
|
2012-11-04 18:16:06 +00:00
|
|
|
index_together = [
|
|
|
|
["headline", "pub_date"],
|
|
|
|
]
|