mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #22447 -- Make sure custom model bases can be migrated.
Thanks to cdestigter for the report.
This commit is contained in:
parent
a2340ac6d6
commit
390f888745
2 changed files with 17 additions and 0 deletions
|
@ -3,9 +3,18 @@ from __future__ import unicode_literals
|
|||
|
||||
from django.apps.registry import Apps
|
||||
from django.db import models
|
||||
from django.utils import six
|
||||
from django.utils.encoding import python_2_unicode_compatible
|
||||
|
||||
|
||||
class CustomModelBase(models.base.ModelBase):
|
||||
pass
|
||||
|
||||
|
||||
class ModelWithCustomBase(six.with_metaclass(CustomModelBase, models.Model)):
|
||||
pass
|
||||
|
||||
|
||||
@python_2_unicode_compatible
|
||||
class UnicodeModel(models.Model):
|
||||
title = models.CharField('ÚÑÍ¢ÓÐÉ', max_length=20, default='“Ðjáñgó”')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue