2013-12-24 12:25:17 +01:00
|
|
|
from django.apps.registry import Apps
|
2012-06-18 17:32:03 +01:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
# Because we want to test creation and deletion of these as separate things,
|
2013-12-24 12:25:17 +01:00
|
|
|
# these models are all inserted into a separate Apps so the main test
|
2013-09-03 11:51:34 -04:00
|
|
|
# runner doesn't migrate them.
|
2013-05-09 15:16:43 +01:00
|
|
|
|
2013-12-24 12:25:17 +01:00
|
|
|
new_apps = Apps()
|
2012-06-18 17:32:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Author(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
2012-09-07 15:40:59 -04:00
|
|
|
height = models.PositiveIntegerField(null=True, blank=True)
|
2016-06-24 20:25:39 -07:00
|
|
|
weight = models.IntegerField(null=True, blank=True)
|
2018-06-17 08:51:02 +02:00
|
|
|
uuid = models.UUIDField(null=True)
|
2012-06-18 17:32:03 +01:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2017-05-23 17:02:40 +02:00
|
|
|
|
|
|
|
|
2017-05-24 07:25:59 +02:00
|
|
|
class AuthorCharFieldWithIndex(models.Model):
|
|
|
|
char_field = models.CharField(max_length=31, db_index=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2017-05-23 17:02:40 +02:00
|
|
|
class AuthorTextFieldWithIndex(models.Model):
|
|
|
|
text_field = models.TextField(db_index=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
2012-06-18 17:32:03 +01:00
|
|
|
|
|
|
|
|
2014-10-31 14:08:24 +01:00
|
|
|
class AuthorWithDefaultHeight(models.Model):
|
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
height = models.PositiveIntegerField(null=True, blank=True, default=42)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class AuthorWithEvenLongerName(models.Model):
|
2014-05-08 10:33:59 -07:00
|
|
|
name = models.CharField(max_length=255)
|
2015-01-29 15:14:55 +01:00
|
|
|
height = models.PositiveIntegerField(null=True, blank=True)
|
2014-05-08 10:33:59 -07:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2017-04-07 15:54:40 +02:00
|
|
|
class AuthorWithIndexedName(models.Model):
|
|
|
|
name = models.CharField(max_length=255, db_index=True)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2012-06-18 17:32:03 +01:00
|
|
|
class Book(models.Model):
|
2015-07-22 09:43:21 -05:00
|
|
|
author = models.ForeignKey(Author, models.CASCADE)
|
2012-08-30 23:11:56 +01:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
2012-06-18 17:32:03 +01:00
|
|
|
pub_date = models.DateTimeField()
|
2013-05-09 15:16:43 +01:00
|
|
|
# tags = models.ManyToManyField("Tag", related_name="books")
|
2012-06-18 17:32:03 +01:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2012-08-02 15:08:39 +01:00
|
|
|
|
|
|
|
|
2014-08-09 17:50:00 +10:00
|
|
|
class BookWeak(models.Model):
|
2015-07-22 09:43:21 -05:00
|
|
|
author = models.ForeignKey(Author, models.CASCADE, db_constraint=False)
|
2014-08-09 17:50:00 +10:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class BookWithLongName(models.Model):
|
2015-07-22 09:43:21 -05:00
|
|
|
author_foreign_key_with_really_long_field_name = models.ForeignKey(
|
|
|
|
AuthorWithEvenLongerName,
|
|
|
|
models.CASCADE,
|
|
|
|
)
|
2015-01-19 15:31:23 +01:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class BookWithO2O(models.Model):
|
2015-07-22 09:43:21 -05:00
|
|
|
author = models.OneToOneField(Author, models.CASCADE)
|
2012-09-07 14:39:22 -04:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
2014-03-08 15:57:25 -08:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
2015-01-29 15:14:55 +01:00
|
|
|
db_table = "schema_book"
|
2014-03-08 15:57:25 -08:00
|
|
|
|
|
|
|
|
2012-09-07 12:51:11 -04:00
|
|
|
class BookWithSlug(models.Model):
|
2015-07-22 09:43:21 -05:00
|
|
|
author = models.ForeignKey(Author, models.CASCADE)
|
2012-09-07 12:51:11 -04:00
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
slug = models.CharField(max_length=20, unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2012-09-07 12:51:11 -04:00
|
|
|
db_table = "schema_book"
|
|
|
|
|
|
|
|
|
2015-06-12 15:52:08 +09:30
|
|
|
class BookWithoutAuthor(models.Model):
|
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
db_table = "schema_book"
|
|
|
|
|
|
|
|
|
2015-07-15 14:38:10 -04:00
|
|
|
class BookForeignObj(models.Model):
|
|
|
|
title = models.CharField(max_length=100, db_index=True)
|
|
|
|
author_id = models.IntegerField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
|
|
|
|
2015-06-01 17:06:54 -04:00
|
|
|
class IntegerPK(models.Model):
|
|
|
|
i = models.IntegerField(primary_key=True)
|
2015-06-01 19:27:28 -04:00
|
|
|
j = models.IntegerField(unique=True)
|
2015-06-01 17:06:54 -04:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
db_table = "INTEGERPK" # uppercase to ensure proper quoting
|
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class Note(models.Model):
|
|
|
|
info = models.TextField()
|
|
|
|
|
2015-04-19 00:05:58 +02:00
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
|
2015-05-27 01:18:21 +03:00
|
|
|
class NoteRename(models.Model):
|
|
|
|
detail_info = models.TextField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
db_table = "schema_note"
|
|
|
|
|
|
|
|
|
2012-08-02 15:08:39 +01:00
|
|
|
class Tag(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
2012-08-10 12:38:18 +01:00
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2012-08-10 12:38:18 +01:00
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class TagIndexed(models.Model):
|
2013-08-19 13:50:26 +01:00
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2015-01-29 15:14:55 +01:00
|
|
|
index_together = [["slug", "title"]]
|
2013-08-19 13:50:26 +01:00
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class TagM2MTest(models.Model):
|
2013-08-11 14:23:31 +01:00
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2013-08-11 14:23:31 +01:00
|
|
|
|
|
|
|
|
2012-08-18 14:00:42 +01:00
|
|
|
class TagUniqueRename(models.Model):
|
|
|
|
title = models.CharField(max_length=255)
|
|
|
|
slug2 = models.SlugField(unique=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-24 12:25:17 +01:00
|
|
|
apps = new_apps
|
2012-08-18 14:00:42 +01:00
|
|
|
db_table = "schema_tag"
|
|
|
|
|
|
|
|
|
2013-12-22 16:44:49 -03:00
|
|
|
# Based on tests/reserved_names/models.py
|
|
|
|
class Thing(models.Model):
|
|
|
|
when = models.CharField(max_length=1, primary_key=True)
|
|
|
|
|
|
|
|
class Meta:
|
2013-12-27 20:58:18 -03:00
|
|
|
db_table = 'drop'
|
2013-12-22 16:44:49 -03:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.when
|
2014-12-04 09:11:30 -05:00
|
|
|
|
|
|
|
|
2015-01-29 15:14:55 +01:00
|
|
|
class UniqueTest(models.Model):
|
|
|
|
year = models.IntegerField()
|
|
|
|
slug = models.SlugField(unique=False)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|
|
|
|
unique_together = ["year", "slug"]
|
2016-03-29 16:58:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Node(models.Model):
|
|
|
|
node_id = models.AutoField(primary_key=True)
|
|
|
|
parent = models.ForeignKey('self', models.CASCADE, null=True, blank=True)
|
2016-12-17 15:02:57 -05:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
apps = new_apps
|