0005_locationsindexpage_introduction.py 517 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-02-17 08:24
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('locations', '0004_locationsindexpage_image'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='locationsindexpage',
  12. name='introduction',
  13. field=models.TextField(blank=True, help_text='Text to describe the index page'),
  14. ),
  15. ]