summaryrefslogtreecommitdiff
path: root/app/unused_apps/jrnl/migrations/0002_entrytitlesong.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/unused_apps/jrnl/migrations/0002_entrytitlesong.py')
-rw-r--r--app/unused_apps/jrnl/migrations/0002_entrytitlesong.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/app/unused_apps/jrnl/migrations/0002_entrytitlesong.py b/app/unused_apps/jrnl/migrations/0002_entrytitlesong.py
deleted file mode 100644
index 66a75a6..0000000
--- a/app/unused_apps/jrnl/migrations/0002_entrytitlesong.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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',
- },
- ),
- ]