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
|
|
|
|
2015-07-02 08:43:15 +00:00
|
|
|
@python_2_unicode_compatible
|
|
|
|
class City(models.Model):
|
|
|
|
id = models.BigAutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
|
|
class District(models.Model):
|
|
|
|
city = models.ForeignKey(City, models.CASCADE)
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
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)
|
2014-08-26 05:22:55 +00:00
|
|
|
small_int = models.SmallIntegerField()
|
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()
|
2015-01-10 19:27:30 +00:00
|
|
|
body = models.TextField(default='')
|
2015-07-22 14:43:21 +00:00
|
|
|
reporter = models.ForeignKey(Reporter, models.CASCADE)
|
|
|
|
response_to = models.ForeignKey('self', models.SET_NULL, null=True)
|
2016-03-02 04:10:46 +00:00
|
|
|
unmanaged_reporters = models.ManyToManyField(Reporter, through='ArticleReporter')
|
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"],
|
|
|
|
]
|
2016-03-02 04:10:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ArticleReporter(models.Model):
|
|
|
|
article = models.ForeignKey(Article, models.CASCADE)
|
|
|
|
reporter = models.ForeignKey(Reporter, models.CASCADE)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
managed = False
|