0009_auto_20190201_1546.py 825 B

123456789101112131415161718
  1. # Generated by Django 2.1.5 on 2019-02-01 20:46
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('wagtailcrx', '0008_auto_20190122_1242'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='coderedpage',
  10. name='index_order_by',
  11. field=models.CharField(blank=True, choices=[('', 'Default Ordering'), ('-first_published_at', 'Date first published, newest to oldest'), ('first_published_at', 'Date first published, oldest to newest'), ('-last_published_at', 'Date updated, newest to oldest'), ('last_published_at', 'Date updated, oldest to newest'), ('title', 'Title, alphabetical'), ('-title', 'Title, reverse alphabetical')], default='', max_length=255, verbose_name='Order child pages by'),
  12. ),
  13. ]