summaryrefslogtreecommitdiff
path: root/app/unused_apps/essays/migrations
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
committerluxagraf <sng@luxagraf.net>2019-10-07 15:27:00 -0400
commit4fec1159612fad17a7385ba8aadc4a4b165d5aa9 (patch)
treed413ea25e7c09efb29c4e80b8ffb3ca7c229a514 /app/unused_apps/essays/migrations
parent9cdfb6ec377fa534c1203c1af46662c2a1ff6f61 (diff)
added new posts stuff and changed name of src posts
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, 260 insertions, 0 deletions
diff --git a/app/unused_apps/essays/migrations/0001_initial.py b/app/unused_apps/essays/migrations/0001_initial.py
new file mode 100644
index 0000000..7b7ea62
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0001_initial.py
@@ -0,0 +1,49 @@
+# 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
new file mode 100644
index 0000000..f4e6744
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0002_auto_20190204_1541.py
@@ -0,0 +1,23 @@
+# 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
new file mode 100644
index 0000000..5f8301b
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0003_essay_afterword_html.py
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 0000000..65e2e5d
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0004_auto_20190205_0830.py
@@ -0,0 +1,27 @@
+# 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
new file mode 100644
index 0000000..5b68bb4
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0005_auto_20190208_0946.py
@@ -0,0 +1,25 @@
+# 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
new file mode 100644
index 0000000..dde70fd
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0006_auto_20190303_1625.py
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 0000000..0842d8b
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0006_remove_essay_has_video.py
@@ -0,0 +1,17 @@
+# 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
new file mode 100644
index 0000000..a5242cb
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0007_auto_20190414_1455.py
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 0000000..0057e95
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0007_essay_has_video.py
@@ -0,0 +1,18 @@
+# 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
new file mode 100644
index 0000000..7c155d8
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0008_merge_20190303_1638.py
@@ -0,0 +1,14 @@
+# 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
new file mode 100644
index 0000000..83a8323
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0009_merge_20190414_1500.py
@@ -0,0 +1,14 @@
+# 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
new file mode 100644
index 0000000..ca15b38
--- /dev/null
+++ b/app/unused_apps/essays/migrations/0010_essay_field_notes.py
@@ -0,0 +1,19 @@
+# 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
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/unused_apps/essays/migrations/__init__.py