parent
c0c6f39f19
commit
afefcfc5c0
8 changed files with 69 additions and 52 deletions
@ -0,0 +1,28 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
from django.conf import settings |
||||
import aldryn_common.admin_fields.sortedm2m |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('aldryn_people', '0004_auto_20150622_1606'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='peopleplugin', |
||||
name='people', |
||||
field=aldryn_common.admin_fields.sortedm2m.SortedM2MModelField(help_text=None, to='aldryn_people.Person', blank=True), |
||||
preserve_default=True, |
||||
), |
||||
migrations.AlterField( |
||||
model_name='person', |
||||
name='user', |
||||
field=models.OneToOneField(null=True, blank=True, to=settings.AUTH_USER_MODEL), |
||||
preserve_default=True, |
||||
), |
||||
] |
||||
@ -0,0 +1,20 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('blog', '0010_auto_20170401_1032'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='post', |
||||
name='sites', |
||||
field=models.ManyToManyField(help_text='Select sites in which to show the post. If none is set it will be visible in all the configured sites.', to='sites.Site', verbose_name='Site(s)', blank=True), |
||||
preserve_default=True, |
||||
), |
||||
] |
||||
@ -1,20 +0,0 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('trademark', '0001_initial'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='nice', |
||||
name='glyph', |
||||
field=models.CharField(default='', max_length=255), |
||||
preserve_default=False, |
||||
), |
||||
] |
||||
Loading…
Reference in new issue