0003_auto_20170209_1651.py 484 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-02-09 16:51
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('base', '0002_gallerypage_choices'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='gallerypage',
  12. name='choices',
  13. field=models.CharField(choices=[(2, 'Something')], max_length=255),
  14. ),
  15. ]