# -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-03-09 10:13 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('jrnl', '0001_initial'), ] operations = [ migrations.CreateModel( name='EntryTitleSong', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=200)), ('slug', models.SlugField(unique_for_date='pub_date')), ('body_html', models.TextField(blank=True)), ('pub_date', models.DateField(verbose_name='Date published')), ('entry', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='jrnl.Entry')), ], options={ 'ordering': ('-pub_date',), 'get_latest_by': 'pub_date', 'verbose_name_plural': 'Entry Title Songs', }, ), ]