2012-06-18 16:32:03 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
|
2012-06-18 16:32:03 +00:00
|
|
|
class Book(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
|
|
|
title = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateTimeField()
|
2012-08-02 14:08:39 +00:00
|
|
|
#tags = models.ManyToManyField("Tag", related_name="books")
|
2012-06-18 16:32:03 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
managed = False
|
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
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
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"]
|