2013-12-24 19:25:17 +08:00
|
|
|
from django.apps.registry import Apps
|
2013-09-01 23:42:43 +08:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
|
2014-04-16 06:54:30 +08:00
|
|
|
class CustomModelBase(models.base.ModelBase):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-01-07 19:11:46 +08:00
|
|
|
class ModelWithCustomBase(models.Model, metaclass=CustomModelBase):
|
2014-04-16 06:54:30 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
2013-09-01 23:42:43 +08:00
|
|
|
class UnicodeModel(models.Model):
|
|
|
|
title = models.CharField('ÚÑÍ¢ÓÐÉ', max_length=20, default='“Ðjáñgó”')
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
# Disable auto loading of this model as we load it on our own
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = Apps()
|
2013-09-01 23:42:43 +08:00
|
|
|
verbose_name = 'úñí©óðé µóðéø'
|
|
|
|
verbose_name_plural = 'úñí©óðé µóðéøß'
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.title
|
2013-10-17 23:32:39 +08:00
|
|
|
|
|
|
|
|
2017-01-19 15:39:46 +08:00
|
|
|
class Unserializable:
|
2013-10-17 23:32:39 +08:00
|
|
|
"""
|
|
|
|
An object that migration doesn't know how to serialize.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class UnserializableModel(models.Model):
|
|
|
|
title = models.CharField(max_length=20, default=Unserializable())
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
# Disable auto loading of this model as we load it on our own
|
2013-12-24 19:25:17 +08:00
|
|
|
apps = Apps()
|
2014-07-10 14:53:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
class UnmigratedModel(models.Model):
|
|
|
|
"""
|
|
|
|
A model that is in a migration-less app (which this app is
|
|
|
|
if its migrations directory has not been repointed)
|
|
|
|
"""
|
|
|
|
pass
|
2014-12-13 06:19:58 +08:00
|
|
|
|
|
|
|
|
2015-01-08 04:14:25 +08:00
|
|
|
class EmptyManager(models.Manager):
|
|
|
|
use_in_migrations = True
|
|
|
|
|
|
|
|
|
2014-12-13 06:19:58 +08:00
|
|
|
class FoodQuerySet(models.query.QuerySet):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class BaseFoodManager(models.Manager):
|
|
|
|
def __init__(self, a, b, c=1, d=2):
|
2017-01-21 21:13:44 +08:00
|
|
|
super().__init__()
|
2014-12-13 06:19:58 +08:00
|
|
|
self.args = (a, b, c, d)
|
|
|
|
|
|
|
|
|
|
|
|
class FoodManager(BaseFoodManager.from_queryset(FoodQuerySet)):
|
|
|
|
use_in_migrations = True
|
|
|
|
|
|
|
|
|
|
|
|
class NoMigrationFoodManager(BaseFoodManager.from_queryset(FoodQuerySet)):
|
|
|
|
pass
|