summaryrefslogtreecommitdiff
path: root/app/jrnl/migrations/0002_entrytitlesong.py
blob: 66a75a643bb6196485eed966d5dd319cf1f8b63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- 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',
            },
        ),
    ]