2009-04-02 12:32:48 +08:00
|
|
|
from django.db import models
|
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
|
2015-07-02 16:43:15 +08:00
|
|
|
class City(models.Model):
|
|
|
|
id = models.BigAutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
|
2019-07-27 05:05:22 +08:00
|
|
|
class Country(models.Model):
|
|
|
|
id = models.SmallAutoField(primary_key=True)
|
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
|
2015-07-02 16:43:15 +08:00
|
|
|
class District(models.Model):
|
2016-08-20 16:28:42 +08:00
|
|
|
city = models.ForeignKey(City, models.CASCADE, primary_key=True)
|
2015-07-02 16:43:15 +08:00
|
|
|
name = models.CharField(max_length=50)
|
|
|
|
|
|
|
|
|
2009-04-02 12:32:48 +08:00
|
|
|
class Reporter(models.Model):
|
|
|
|
first_name = models.CharField(max_length=30)
|
|
|
|
last_name = models.CharField(max_length=30)
|
|
|
|
email = models.EmailField()
|
2012-02-12 04:05:50 +08:00
|
|
|
facebook_user_id = models.BigIntegerField(null=True)
|
2012-12-18 05:35:35 +08:00
|
|
|
raw_data = models.BinaryField(null=True)
|
2014-08-26 13:22:55 +08:00
|
|
|
small_int = models.SmallIntegerField()
|
2018-10-21 15:08:05 +08:00
|
|
|
interval = models.DurationField()
|
2009-04-02 12:32:48 +08:00
|
|
|
|
2012-04-30 19:05:30 +08:00
|
|
|
class Meta:
|
|
|
|
unique_together = ("first_name", "last_name")
|
|
|
|
|
2012-11-05 02:16:06 +08:00
|
|
|
|
2009-04-02 12:32:48 +08:00
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateField()
|
2015-01-11 03:27:30 +08:00
|
|
|
body = models.TextField(default="")
|
2015-07-22 22:43:21 +08:00
|
|
|
reporter = models.ForeignKey(Reporter, models.CASCADE)
|
|
|
|
response_to = models.ForeignKey("self", models.SET_NULL, null=True)
|
2016-03-18 22:24:29 +08:00
|
|
|
unmanaged_reporters = models.ManyToManyField(
|
|
|
|
Reporter, through="ArticleReporter", related_name="+"
|
|
|
|
)
|
2009-04-02 12:32:48 +08:00
|
|
|
|
|
|
|
class Meta:
|
2012-04-30 19:05:30 +08:00
|
|
|
ordering = ("headline",)
|
2022-07-11 14:23:50 +08:00
|
|
|
indexes = [
|
|
|
|
models.Index(fields=["headline", "pub_date"]),
|
|
|
|
models.Index(fields=["headline", "response_to", "pub_date", "reporter"]),
|
2012-11-05 02:16:06 +08:00
|
|
|
]
|
2016-03-02 12:10:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ArticleReporter(models.Model):
|
|
|
|
article = models.ForeignKey(Article, models.CASCADE)
|
|
|
|
reporter = models.ForeignKey(Reporter, models.CASCADE)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
managed = False
|
2019-02-28 05:47:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Comment(models.Model):
|
|
|
|
ref = models.UUIDField(unique=True)
|
|
|
|
article = models.ForeignKey(Article, models.CASCADE, db_index=True)
|
|
|
|
email = models.EmailField()
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
body = models.TextField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
constraints = [
|
|
|
|
models.UniqueConstraint(
|
|
|
|
fields=["article", "email", "pub_date"],
|
|
|
|
name="article_email_pub_date_uniq",
|
|
|
|
),
|
|
|
|
]
|
|
|
|
indexes = [
|
|
|
|
models.Index(fields=["email", "pub_date"], name="email_pub_date_idx"),
|
|
|
|
]
|
2019-08-10 14:41:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
class CheckConstraintModel(models.Model):
|
|
|
|
up_votes = models.PositiveIntegerField()
|
2019-08-26 15:15:37 +08:00
|
|
|
voting_number = models.PositiveIntegerField(unique=True)
|
2019-08-10 14:41:18 +08:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
required_db_features = {
|
|
|
|
"supports_table_check_constraints",
|
|
|
|
}
|
|
|
|
constraints = [
|
|
|
|
models.CheckConstraint(
|
|
|
|
name="up_votes_gte_0_check", check=models.Q(up_votes__gte=0)
|
|
|
|
),
|
|
|
|
]
|
2021-02-17 17:46:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UniqueConstraintConditionModel(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
color = models.CharField(max_length=32, null=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
required_db_features = {"supports_partial_indexes"}
|
|
|
|
constraints = [
|
|
|
|
models.UniqueConstraint(
|
|
|
|
fields=["name"],
|
|
|
|
name="cond_name_without_color_uniq",
|
|
|
|
condition=models.Q(color__isnull=True),
|
|
|
|
),
|
|
|
|
]
|
2022-10-16 13:59:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DbCommentModel(models.Model):
|
|
|
|
name = models.CharField(max_length=15, db_comment="'Name' column comment")
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
db_table_comment = "Custom table comment"
|
|
|
|
required_db_features = {"supports_comments"}
|