Merge branch 'extra-indexes' of https://github.com/kaedroho/wagtail into kaedroho-extra-indexes

This commit is contained in:
Matt Westcott 2015-08-20 16:38:20 +01:00
commit 4e28ad42d0
5 changed files with 64 additions and 2 deletions

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('tests', '0006_image_file_size'),
]
operations = [
migrations.AlterField(
model_name='customimagewithadminformfields',
name='created_at',
field=models.DateTimeField(db_index=True, verbose_name='Created at', auto_now_add=True),
),
migrations.AlterField(
model_name='customimagewithoutadminformfields',
name='created_at',
field=models.DateTimeField(db_index=True, verbose_name='Created at', auto_now_add=True),
),
]

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('wagtailcore', '0017_change_edit_page_permission_description'),
]
operations = [
migrations.AlterField(
model_name='pagerevision',
name='submitted_for_moderation',
field=models.BooleanField(default=False, db_index=True, verbose_name='Submitted for moderation'),
),
]

View file

@ -1074,7 +1074,7 @@ class SubmittedRevisionsManager(models.Manager):
@python_2_unicode_compatible
class PageRevision(models.Model):
page = models.ForeignKey('Page', verbose_name=_('Page'), related_name='revisions')
submitted_for_moderation = models.BooleanField(verbose_name=_('Submitted for moderation'), default=False)
submitted_for_moderation = models.BooleanField(verbose_name=_('Submitted for moderation'), default=False, db_index=True)
created_at = models.DateTimeField(verbose_name=_('Created at'))
user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('User'), null=True, blank=True)
content_json = models.TextField(verbose_name=_('Content JSON'))

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('wagtailimages', '0007_image_file_size'),
]
operations = [
migrations.AlterField(
model_name='image',
name='created_at',
field=models.DateTimeField(db_index=True, verbose_name='Created at', auto_now_add=True),
),
]

View file

@ -63,7 +63,7 @@ class AbstractImage(models.Model, TagSearchable):
file = models.ImageField(verbose_name=_('File'), upload_to=get_upload_to, width_field='width', height_field='height')
width = models.IntegerField(verbose_name=_('Width'), editable=False)
height = models.IntegerField(verbose_name=_('Height'), editable=False)
created_at = models.DateTimeField(verbose_name=_('Created at'), auto_now_add=True)
created_at = models.DateTimeField(verbose_name=_('Created at'), auto_now_add=True, db_index=True)
uploaded_by_user = models.ForeignKey(settings.AUTH_USER_MODEL, verbose_name=_('Uploaded by user'), null=True, blank=True, editable=False)
tags = TaggableManager(help_text=None, blank=True, verbose_name=_('Tags'))