diff options
author | luxagraf <sng@luxagraf.net> | 2023-05-26 09:53:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-05-26 09:53:56 -0500 |
commit | ccf5541458db1cc4c1b46de95ee877ac67a0684a (patch) | |
tree | e9719ece7fdef9c89b666c2253015531a7e5e999 /app/posts/migrations | |
parent | 28a613a8efda914eb5abb1d3d5551aa8be83a620 (diff) |
posts: added the concept of trips and a template for displaying them
Diffstat (limited to 'app/posts/migrations')
-rw-r--r-- | app/posts/migrations/0023_trip_order.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/posts/migrations/0023_trip_order.py b/app/posts/migrations/0023_trip_order.py new file mode 100644 index 0000000..75c643a --- /dev/null +++ b/app/posts/migrations/0023_trip_order.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.1 on 2023-05-24 10:56 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('posts', '0022_trip_post_trip'), + ] + + operations = [ + migrations.AddField( + model_name='trip', + name='order', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='order'), + ), + ] |