diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-28 09:42:12 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-28 09:42:12 -0500 |
commit | 4fdef7c45363f350d83a2a72f4750f22cb6e68f9 (patch) | |
tree | 924accf1130f6401e08497993e82f776daa3ae4b /app/posts/migrations | |
parent | 7ba1f6de4a39d294594dc1e93a58400f6991398f (diff) |
jrnl: added trip migration
Diffstat (limited to 'app/posts/migrations')
-rw-r--r-- | app/posts/migrations/0024_alter_trip_options_trip_dek.py | 22 |
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), + ), + ] |