2013-12-24 19:25:17 +08:00
|
|
|
from django.apps.registry import Apps
|
2012-06-19 00:32:03 +08:00
|
|
|
from django.db import models
|
2013-12-23 03:44:49 +08:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2012-06-19 00:32:03 +08:00
|
|
|
|
|
|
|
# Because we want to test creation and deletion of these as separate things,
|
2013-12-24 19:25:17 +08:00
|
|
|
# these models are all inserted into a separate Apps so the main test
|
2013-09-03 23:51:34 +08:00
|
|
|
# runner doesn't migrate them.
|
2013-05-09 22:16:43 +08:00
|
|
|
|
2013-12-24 19:25:17 +08:00
|
|
|
new_apps = Apps()
|
2012-06-19 00:32:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Author(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
2012-09-08 03:40:59 +08:00
|
|
|
height = models.PositiveIntegerField(null=True, blank=True)
|
2012-06-19 00:32:03 +08:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-06-19 00:32:03 +08:00
|
|
|
|
|
|
|
|
2012-08-02 22:08:39 +08:00
|
|
|
class AuthorWithM2M(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-08-02 22:08:39 +08:00
|
|
|
|
|
|
|
|
2012-06-19 00:32:03 +08:00
|
|
|
class Book(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
2012-08-31 06:11:56 +08:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
2012-06-19 00:32:03 +08:00
|
|
|
pub_date = models.DateTimeField()
|
2013-05-09 22:16:43 +08:00
|
|
|
# tags = models.ManyToManyField("Tag", related_name="books")
|
2012-06-19 00:32:03 +08:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-08-02 22:08:39 +08:00
|
|
|
|
|
|
|
|
2012-09-08 02:39:22 +08: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 20:50:26 +08:00
|
|
|
tags = models.ManyToManyField("TagM2MTest", related_name="books")
|
2012-09-08 02:39:22 +08:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-09-08 02:39:22 +08:00
|
|
|
|
|
|
|
|
2012-09-08 00:51:11 +08: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-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-09-08 00:51:11 +08:00
|
|
|
db_table = "schema_book"
|
|
|
|
|
|
|
|
|
2012-08-02 22:08:39 +08:00
|
|
|
class Tag(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
2012-08-10 19:38:18 +08:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-08-10 19:38:18 +08:00
|
|
|
|
|
|
|
|
2013-08-19 20:50:26 +08:00
|
|
|
class TagM2MTest(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2013-08-19 20:50:26 +08:00
|
|
|
|
|
|
|
|
2013-08-11 21:23:31 +08:00
|
|
|
class TagIndexed(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2013-08-11 21:23:31 +08:00
|
|
|
index_together = [["slug", "title"]]
|
|
|
|
|
|
|
|
|
2012-08-18 21:00:42 +08:00
|
|
|
class TagUniqueRename(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug2 = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-08-18 21:00:42 +08:00
|
|
|
db_table = "schema_tag"
|
|
|
|
|
|
|
|
|
2012-08-10 19:38:18 +08:00
|
|
|
class UniqueTest(models.Model):
|
|
|
|
year = models.IntegerField()
|
|
|
|
slug = models.SlugField(unique=False)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2012-08-10 19:38:18 +08:00
|
|
|
unique_together = ["year", "slug"]
|
2013-11-23 06:31:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
class BookWithLongName(models.Model):
|
|
|
|
author_foreign_key_with_really_long_field_name = models.ForeignKey(Author)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = new_apps
|
2013-12-23 03:44:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
# Based on tests/reserved_names/models.py
|
|
|
|
@python_2_unicode_compatible
|
|
|
|
class Thing(models.Model):
|
|
|
|
when = models.CharField(max_length=1, primary_key=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-28 07:58:18 +08:00
|
|
|
db_table = 'drop'
|
2013-12-23 03:44:49 +08:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.when
|