summaryrefslogtreecommitdiff
path: root/app/media/0002_auto_20201201_2054.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2024-12-27 09:47:42 -0600
committerluxagraf <sng@luxagraf.net>2024-12-27 09:47:42 -0600
commit8c7b0e1abe1983fac38322c3bc01165c4c693d7e (patch)
tree2f91e32f0dae419fe46f773fe9a11817b809fcf0 /app/media/0002_auto_20201201_2054.py
parent05b386315c09c735201566cf8945fc8ff78d2741 (diff)
jrnl: added a photo essay post type and new url/template/views. also cleared out some old unneeded files
Diffstat (limited to 'app/media/0002_auto_20201201_2054.py')
-rw-r--r--app/media/0002_auto_20201201_2054.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/media/0002_auto_20201201_2054.py b/app/media/0002_auto_20201201_2054.py
deleted file mode 100644
index 843f48b..0000000
--- a/app/media/0002_auto_20201201_2054.py
+++ /dev/null
@@ -1,46 +0,0 @@
-# Generated by Django 3.1 on 2020-12-01 19:26
-
-from django.db import migrations
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('media', '0001_initial'),
- ]
-
- operations = [
- migrations.RunSQL("""
- INSERT INTO media_luximagesize (
- id,
- name,
- width,
- height,
- quality
- )
- SELECT
- id,
- name,
- width,
- height,
- quality
- FROM
- photos_luximagesize;
- """, reverse_sql="""
- INSERT INTO photos_luximagesize (
- id,
- name,
- width,
- height,
- quality
- )
- SELECT
- id,
- name,
- width,
- height,
- quality
- FROM
- media_luximagesize;
- """)
- ]