summaryrefslogtreecommitdiff
path: root/app/posts
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts')
-rw-r--r--app/posts/migrations/0024_alter_trip_options_trip_dek.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/posts/migrations/0024_alter_trip_options_trip_dek.py b/app/posts/migrations/0024_alter_trip_options_trip_dek.py
new file mode 100644
index 0000000..56f8e1a
--- /dev/null
+++ b/app/posts/migrations/0024_alter_trip_options_trip_dek.py
@@ -0,0 +1,22 @@
+# Generated by Django 4.2.1 on 2023-05-28 10:28
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('posts', '0023_trip_order'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='trip',
+ options={'ordering': ('-order',)},
+ ),
+ migrations.AddField(
+ model_name='trip',
+ name='dek',
+ field=models.TextField(blank=True, null=True),
+ ),
+ ]