django/tests/schema/models.py

81 lines
2.0 KiB
Python
Raw Normal View History

from django.db import models
from django.db.models.loading import BaseAppCache
# Because we want to test creation and deletion of these as separate things,
# these models are all inserted into a separate AppCache so the main test
# runner doesn't syncdb them.
new_app_cache = BaseAppCache()
class Author(models.Model):
name = models.CharField(max_length=255)
height = models.PositiveIntegerField(null=True, blank=True)
class Meta:
app_cache = new_app_cache
2012-08-02 22:08:39 +08:00
class AuthorWithM2M(models.Model):
name = models.CharField(max_length=255)
class Meta:
app_cache = new_app_cache
2012-08-02 22:08:39 +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)
pub_date = models.DateTimeField()
# tags = models.ManyToManyField("Tag", related_name="books")
class Meta:
app_cache = new_app_cache
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()
tags = models.ManyToManyField("Tag", related_name="books")
class Meta:
app_cache = new_app_cache
2012-09-08 02:39:22 +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:
app_cache = new_app_cache
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:
app_cache = new_app_cache
2012-08-10 19:38:18 +08:00
class TagUniqueRename(models.Model):
title = models.CharField(max_length=255)
slug2 = models.SlugField(unique=True)
class Meta:
app_cache = new_app_cache
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:
app_cache = new_app_cache
2012-08-10 19:38:18 +08:00
unique_together = ["year", "slug"]