summaryrefslogtreecommitdiff
path: root/app/media/migrations
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/migrations
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/migrations')
-rw-r--r--app/media/migrations/0009_remove_luximage_exif_aperture_and_more.py49
-rw-r--r--app/media/migrations/0010_luximage_image_type.py18
2 files changed, 67 insertions, 0 deletions
diff --git a/app/media/migrations/0009_remove_luximage_exif_aperture_and_more.py b/app/media/migrations/0009_remove_luximage_exif_aperture_and_more.py
new file mode 100644
index 0000000..631c12c
--- /dev/null
+++ b/app/media/migrations/0009_remove_luximage_exif_aperture_and_more.py
@@ -0,0 +1,49 @@
+# Generated by Django 5.0.4 on 2024-12-25 11:50
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('media', '0008_auto_20201202_1155'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_aperture',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_date',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_exposure',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_focal_length',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_iso',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_lens',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_make',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_model',
+ ),
+ migrations.RemoveField(
+ model_name='luximage',
+ name='exif_raw',
+ ),
+ ]
diff --git a/app/media/migrations/0010_luximage_image_type.py b/app/media/migrations/0010_luximage_image_type.py
new file mode 100644
index 0000000..ed8cad9
--- /dev/null
+++ b/app/media/migrations/0010_luximage_image_type.py
@@ -0,0 +1,18 @@
+# Generated by Django 5.0.4 on 2024-12-25 11:54
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('media', '0009_remove_luximage_exif_aperture_and_more'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='luximage',
+ name='image_type',
+ field=models.IntegerField(choices=[(0, 'Photo'), (1, 'Sketch')], default=0),
+ ),
+ ]