2006-05-02 01:31:56 +00:00
|
|
|
"""
|
2014-09-24 05:13:13 +00:00
|
|
|
Bare-bones model
|
2006-05-02 01:31:56 +00:00
|
|
|
|
|
|
|
This is a basic model with only two non-primary-key fields.
|
|
|
|
"""
|
2024-01-26 11:45:07 +00:00
|
|
|
|
2019-08-17 13:30:29 +00:00
|
|
|
import uuid
|
|
|
|
|
2011-07-13 09:35:51 +00:00
|
|
|
from django.db import models
|
2006-05-02 01:31:56 +00:00
|
|
|
|
2011-10-13 18:04:12 +00:00
|
|
|
|
2006-05-02 01:31:56 +00:00
|
|
|
class Article(models.Model):
|
2007-08-05 05:14:46 +00:00
|
|
|
headline = models.CharField(max_length=100, default="Default headline")
|
2006-05-02 01:31:56 +00:00
|
|
|
pub_date = models.DateTimeField()
|
2006-06-04 00:23:51 +00:00
|
|
|
|
2006-12-19 03:38:38 +00:00
|
|
|
class Meta:
|
2013-10-26 19:15:03 +00:00
|
|
|
ordering = ("pub_date", "headline")
|
2007-02-14 06:32:32 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2006-05-02 01:31:56 +00:00
|
|
|
return self.headline
|
2013-05-20 15:45:24 +00:00
|
|
|
|
2013-11-03 04:36:09 +00:00
|
|
|
|
2017-09-19 17:51:19 +00:00
|
|
|
class FeaturedArticle(models.Model):
|
|
|
|
article = models.OneToOneField(Article, models.CASCADE, related_name="featured")
|
|
|
|
|
|
|
|
|
2013-08-30 06:41:07 +00:00
|
|
|
class ArticleSelectOnSave(Article):
|
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
select_on_save = True
|
|
|
|
|
2013-11-03 04:36:09 +00:00
|
|
|
|
2013-05-20 15:45:24 +00:00
|
|
|
class SelfRef(models.Model):
|
2015-07-22 14:43:21 +00:00
|
|
|
selfref = models.ForeignKey(
|
|
|
|
"self",
|
|
|
|
models.SET_NULL,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
related_name="+",
|
|
|
|
)
|
2015-11-20 15:31:33 +00:00
|
|
|
article = models.ForeignKey(Article, models.SET_NULL, null=True, blank=True)
|
2023-10-27 22:24:09 +00:00
|
|
|
article_cited = models.ForeignKey(
|
|
|
|
Article, models.SET_NULL, null=True, blank=True, related_name="cited"
|
|
|
|
)
|
2013-05-20 15:45:24 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
2014-11-20 21:25:49 +00:00
|
|
|
# This method intentionally doesn't work for all cases - part
|
|
|
|
# of the test for ticket #20278
|
2013-05-20 15:45:24 +00:00
|
|
|
return SelfRef.objects.get(selfref=self).pk
|
2019-08-17 13:30:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PrimaryKeyWithDefault(models.Model):
|
|
|
|
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4)
|
2020-02-26 17:49:05 +00:00
|
|
|
|
|
|
|
|
2020-11-22 22:27:57 +00:00
|
|
|
class PrimaryKeyWithDbDefault(models.Model):
|
|
|
|
uuid = models.IntegerField(primary_key=True, db_default=1)
|
|
|
|
|
|
|
|
|
2020-02-26 17:49:05 +00:00
|
|
|
class ChildPrimaryKeyWithDefault(PrimaryKeyWithDefault):
|
|
|
|
pass
|