2012-06-18 16:32:03 +00:00
|
|
|
from django.db import models
|
2013-05-09 14:16:43 +00:00
|
|
|
from django.db.models.loading import BaseAppCache
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
# Because we want to test creation and deletion of these as separate things,
|
2013-05-09 14:16:43 +00:00
|
|
|
# these models are all inserted into a separate AppCache so the main test
|
|
|
|
# runner doesn't syncdb them.
|
|
|
|
|
|
|
|
new_app_cache = BaseAppCache()
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Author(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
2012-09-07 19:40:59 +00:00
|
|
|
height = models.PositiveIntegerField(null=True, blank=True)
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
|
2012-08-02 14:08:39 +00:00
|
|
|
class AuthorWithM2M(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-08-02 14:08:39 +00:00
|
|
|
|
|
|
|
|
2012-06-18 16:32:03 +00:00
|
|
|
class Book(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
2012-08-30 22:11:56 +00:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
2012-06-18 16:32:03 +00:00
|
|
|
pub_date = models.DateTimeField()
|
2013-05-09 14:16:43 +00:00
|
|
|
# tags = models.ManyToManyField("Tag", related_name="books")
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-08-02 14:08:39 +00:00
|
|
|
|
|
|
|
|
2012-09-07 18:39:22 +00:00
|
|
|
class BookWithM2M(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
2013-08-19 12:50:26 +00:00
|
|
|
tags = models.ManyToManyField("TagM2MTest", related_name="books")
|
2012-09-07 18:39:22 +00:00
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-09-07 18:39:22 +00:00
|
|
|
|
|
|
|
|
2012-09-07 16:51:11 +00:00
|
|
|
class BookWithSlug(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
slug = models.CharField(max_length=20, unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-09-07 16:51:11 +00:00
|
|
|
db_table = "schema_book"
|
|
|
|
|
|
|
|
|
2012-08-02 14:08:39 +00:00
|
|
|
class Tag(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
2012-08-10 11:38:18 +00:00
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-08-10 11:38:18 +00:00
|
|
|
|
|
|
|
|
2013-08-19 12:50:26 +00:00
|
|
|
class TagM2MTest(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
app_cache = new_app_cache
|
|
|
|
|
|
|
|
|
2013-08-11 13:23:31 +00:00
|
|
|
class TagIndexed(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
app_cache = new_app_cache
|
|
|
|
index_together = [["slug", "title"]]
|
|
|
|
|
|
|
|
|
2012-08-18 13:00:42 +00:00
|
|
|
class TagUniqueRename(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug2 = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-08-18 13:00:42 +00:00
|
|
|
db_table = "schema_tag"
|
|
|
|
|
|
|
|
|
2012-08-10 11:38:18 +00:00
|
|
|
class UniqueTest(models.Model):
|
|
|
|
year = models.IntegerField()
|
|
|
|
slug = models.SlugField(unique=False)
|
|
|
|
|
|
|
|
class Meta:
|
2013-05-09 14:16:43 +00:00
|
|
|
app_cache = new_app_cache
|
2012-08-10 11:38:18 +00:00
|
|
|
unique_together = ["year", "slug"]
|