summaryrefslogtreecommitdiff
path: root/app/normalize/migrations
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2020-12-23 10:41:23 -0500
committerlxf <sng@luxagraf.net>2020-12-23 10:41:23 -0500
commit31a9231e7f38553c086784294ccbe4a0a3992279 (patch)
treee9a03c8320c5ff302e2eb1b2bf16fb847d17b99f /app/normalize/migrations
parentff338a4f1db71972b0db73bea1158c8b56b5303d (diff)
updated normalize to store the type of post where applicable
Diffstat (limited to 'app/normalize/migrations')
-rw-r--r--app/normalize/migrations/0004_relatedpost_post_type.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/normalize/migrations/0004_relatedpost_post_type.py b/app/normalize/migrations/0004_relatedpost_post_type.py
new file mode 100644
index 0000000..c95d623
--- /dev/null
+++ b/app/normalize/migrations/0004_relatedpost_post_type.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.1 on 2020-12-23 10:36
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('normalize', '0003_auto_20200418_0909'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='relatedpost',
+ name='post_type',
+ field=models.CharField(blank=True, max_length=50, null=True),
+ ),
+ ]