From 4fdef7c45363f350d83a2a72f4750f22cb6e68f9 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 28 May 2023 09:42:12 -0500 Subject: jrnl: added trip migration --- .../migrations/0024_alter_trip_options_trip_dek.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 app/posts/migrations/0024_alter_trip_options_trip_dek.py (limited to 'app/posts') 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), + ), + ] -- cgit v1.2.3-70-g09d2