summaryrefslogtreecommitdiff
path: root/app/unused_apps/essays/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'app/unused_apps/essays/migrations')
-rw-r--r--app/unused_apps/essays/migrations/0001_initial.py49
-rw-r--r--app/unused_apps/essays/migrations/0002_auto_20190204_1541.py23
-rw-r--r--app/unused_apps/essays/migrations/0003_essay_afterword_html.py18
-rw-r--r--app/unused_apps/essays/migrations/0004_auto_20190205_0830.py27
-rw-r--r--app/unused_apps/essays/migrations/0005_auto_20190208_0946.py25
-rw-r--r--app/unused_apps/essays/migrations/0006_auto_20190303_1625.py18
-rw-r--r--app/unused_apps/essays/migrations/0006_remove_essay_has_video.py17
-rw-r--r--app/unused_apps/essays/migrations/0007_auto_20190414_1455.py18
-rw-r--r--app/unused_apps/essays/migrations/0007_essay_has_video.py18
-rw-r--r--app/unused_apps/essays/migrations/0008_merge_20190303_1638.py14
-rw-r--r--app/unused_apps/essays/migrations/0009_merge_20190414_1500.py14
-rw-r--r--app/unused_apps/essays/migrations/0010_essay_field_notes.py19
-rw-r--r--app/unused_apps/essays/migrations/__init__.py0
13 files changed, 0 insertions, 260 deletions
diff --git a/app/unused_apps/essays/migrations/0001_initial.py b/app/unused_apps/essays/migrations/0001_initial.py
deleted file mode 100644
index 7b7ea62..0000000
--- a/app/unused_apps/essays/migrations/0001_initial.py
+++ /dev/null
@@ -1,49 +0,0 @@
-# Generated by Django 2.1.5 on 2019-02-04 14:08
-
-from django.db import migrations, models
-import django.db.models.deletion
-import taggit.managers
-
-
-class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ('photos', '0018_auto_20161130_1218'),
- ('books', '0007_auto_20190131_2351'),
- ('taxonomy', '0001_initial'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='Essay',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('title', models.CharField(max_length=200)),
- ('sub_title', models.CharField(blank=True, max_length=200)),
- ('dek', models.TextField(blank=True)),
- ('slug', models.SlugField(unique_for_date='pub_date')),
- ('body_html', models.TextField(blank=True)),
- ('body_markdown', models.TextField()),
- ('pub_date', models.DateTimeField(verbose_name='Date published')),
- ('last_updated', models.DateTimeField(auto_now=True)),
- ('enable_comments', models.BooleanField(default=False)),
- ('has_code', models.BooleanField(default=False)),
- ('status', models.IntegerField(choices=[(0, 'Draft'), (1, 'Published')], default=0)),
- ('meta_description', models.CharField(blank=True, max_length=256, null=True)),
- ('post_type', models.IntegerField(choices=[(0, 'essay'), (1, 'tools'), (2, 'figment')], default=0)),
- ('elsewhere', models.CharField(blank=True, max_length=400)),
- ('has_video', models.BooleanField(blank=True, default=False)),
- ('afterword', models.TextField(blank=True)),
- ('books', models.ManyToManyField(blank=True, to='books.Book')),
- ('featured_image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='photos.LuxImage')),
- ('tags', taggit.managers.TaggableManager(blank=True, help_text='Topics Covered', through='taxonomy.TaggedItems', to='taxonomy.LuxTag', verbose_name='Tags')),
- ],
- options={
- 'verbose_name_plural': 'Essays',
- 'ordering': ('-pub_date',),
- 'get_latest_by': 'pub_date',
- },
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0002_auto_20190204_1541.py b/app/unused_apps/essays/migrations/0002_auto_20190204_1541.py
deleted file mode 100644
index f4e6744..0000000
--- a/app/unused_apps/essays/migrations/0002_auto_20190204_1541.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# Generated by Django 2.1.5 on 2019-02-04 15:41
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0001_initial'),
- ]
-
- operations = [
- migrations.RenameField(
- model_name='essay',
- old_name='elsewhere',
- new_name='originally_published_by',
- ),
- migrations.AddField(
- model_name='essay',
- name='originally_published_by_url',
- field=models.CharField(blank=True, max_length=400),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0003_essay_afterword_html.py b/app/unused_apps/essays/migrations/0003_essay_afterword_html.py
deleted file mode 100644
index 5f8301b..0000000
--- a/app/unused_apps/essays/migrations/0003_essay_afterword_html.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 2.1.5 on 2019-02-04 16:11
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0002_auto_20190204_1541'),
- ]
-
- operations = [
- migrations.AddField(
- model_name='essay',
- name='afterword_html',
- field=models.TextField(blank=True),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0004_auto_20190205_0830.py b/app/unused_apps/essays/migrations/0004_auto_20190205_0830.py
deleted file mode 100644
index 65e2e5d..0000000
--- a/app/unused_apps/essays/migrations/0004_auto_20190205_0830.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Generated by Django 2.1.5 on 2019-02-05 08:30
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0003_essay_afterword_html'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='PostType',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('name', models.CharField(max_length=200)),
- ('dek', models.TextField(blank=True)),
- ('slug', models.SlugField()),
- ],
- ),
- migrations.AlterField(
- model_name='essay',
- name='post_type',
- field=models.IntegerField(choices=[(0, 'essays'), (1, 'tools'), (2, 'figments')], default=0),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0005_auto_20190208_0946.py b/app/unused_apps/essays/migrations/0005_auto_20190208_0946.py
deleted file mode 100644
index 5b68bb4..0000000
--- a/app/unused_apps/essays/migrations/0005_auto_20190208_0946.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# Generated by Django 2.1.5 on 2019-02-08 09:46
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0004_auto_20190205_0830'),
- ]
-
- operations = [
- migrations.DeleteModel(
- name='PostType',
- ),
- migrations.RemoveField(
- model_name='essay',
- name='post_type',
- ),
- migrations.AddField(
- model_name='essay',
- name='preamble',
- field=models.TextField(blank=True),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0006_auto_20190303_1625.py b/app/unused_apps/essays/migrations/0006_auto_20190303_1625.py
deleted file mode 100644
index dde70fd..0000000
--- a/app/unused_apps/essays/migrations/0006_auto_20190303_1625.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 2.1.7 on 2019-03-03 16:25
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0005_auto_20190208_0946'),
- ]
-
- operations = [
- migrations.AlterField(
- model_name='essay',
- name='field_notes',
- field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0006_remove_essay_has_video.py b/app/unused_apps/essays/migrations/0006_remove_essay_has_video.py
deleted file mode 100644
index 0842d8b..0000000
--- a/app/unused_apps/essays/migrations/0006_remove_essay_has_video.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Generated by Django 2.1.2 on 2019-02-27 21:22
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0005_auto_20190208_0946'),
- ]
-
- operations = [
- migrations.RemoveField(
- model_name='essay',
- name='has_video',
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0007_auto_20190414_1455.py b/app/unused_apps/essays/migrations/0007_auto_20190414_1455.py
deleted file mode 100644
index a5242cb..0000000
--- a/app/unused_apps/essays/migrations/0007_auto_20190414_1455.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 2.1.7 on 2019-04-14 14:55
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0006_auto_20190303_1625'),
- ]
-
- operations = [
- migrations.AddField(
- model_name='essay',
- name='preamble_html',
- field=models.TextField(blank=True),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0007_essay_has_video.py b/app/unused_apps/essays/migrations/0007_essay_has_video.py
deleted file mode 100644
index 0057e95..0000000
--- a/app/unused_apps/essays/migrations/0007_essay_has_video.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# Generated by Django 2.1.2 on 2019-02-27 21:22
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0006_remove_essay_has_video'),
- ]
-
- operations = [
- migrations.AddField(
- model_name='essay',
- name='has_video',
- field=models.BooleanField(blank=True, default=False),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/0008_merge_20190303_1638.py b/app/unused_apps/essays/migrations/0008_merge_20190303_1638.py
deleted file mode 100644
index 7c155d8..0000000
--- a/app/unused_apps/essays/migrations/0008_merge_20190303_1638.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Generated by Django 2.1.2 on 2019-03-03 16:38
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0007_essay_has_video'),
- ('essays', '0006_auto_20190303_1625'),
- ]
-
- operations = [
- ]
diff --git a/app/unused_apps/essays/migrations/0009_merge_20190414_1500.py b/app/unused_apps/essays/migrations/0009_merge_20190414_1500.py
deleted file mode 100644
index 83a8323..0000000
--- a/app/unused_apps/essays/migrations/0009_merge_20190414_1500.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Generated by Django 2.1.2 on 2019-04-14 15:00
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('essays', '0008_merge_20190303_1638'),
- ('essays', '0007_auto_20190414_1455'),
- ]
-
- operations = [
- ]
diff --git a/app/unused_apps/essays/migrations/0010_essay_field_notes.py b/app/unused_apps/essays/migrations/0010_essay_field_notes.py
deleted file mode 100644
index ca15b38..0000000
--- a/app/unused_apps/essays/migrations/0010_essay_field_notes.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# Generated by Django 2.1.7 on 2019-07-04 09:03
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('fieldnotes', '0002_auto_20190303_1222'),
- ('essays', '0009_merge_20190414_1500'),
- ]
-
- operations = [
- migrations.AddField(
- model_name='essay',
- name='field_notes',
- field=models.ManyToManyField(blank=True, to='fieldnotes.FieldNote'),
- ),
- ]
diff --git a/app/unused_apps/essays/migrations/__init__.py b/app/unused_apps/essays/migrations/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/app/unused_apps/essays/migrations/__init__.py
+++ /dev/null