0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00
django/tests/modeltests/schema/models.py

35 lines
816 B
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 16:08:39 +02: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 16:08:39 +02:00
#tags = models.ManyToManyField("Tag", related_name="books")
class Meta:
managed = False
2012-08-02 16:08:39 +02:00
class Tag(models.Model):
title = models.CharField(max_length=255)
slug = models.SlugField(unique=True)