django/tests/modeltests/schema/models.py

67 lines
1.5 KiB
Python
Raw Normal View History

from django.db import models
# Because we want to test creation and deletion of these as separate things,
# these models are all marked as unmanaged and only marked as managed while
# a schema test is running.
class Author(models.Model):
name = models.CharField(max_length=255)
class Meta:
managed = False
2012-08-02 14:08:39 +00:00
class AuthorWithM2M(models.Model):
name = models.CharField(max_length=255)
class Meta:
managed = False
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)
pub_date = models.DateTimeField()
2012-08-02 14:08:39 +00:00
#tags = models.ManyToManyField("Tag", related_name="books")
class Meta:
managed = False
2012-08-02 14:08:39 +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:
managed = False
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:
managed = False
class TagUniqueRename(models.Model):
title = models.CharField(max_length=255)
slug2 = models.SlugField(unique=True)
class Meta:
managed = False
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:
managed = False
unique_together = ["year", "slug"]