django/tests/modeltests/schema/models.py

47 lines
1.0 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)
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")
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
class UniqueTest(models.Model):
year = models.IntegerField()
slug = models.SlugField(unique=False)
class Meta:
managed = False
unique_together = ["year", "slug"]