blob: 75c643a30063c1c4f744fdf16436010304dceba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'),
),
]
|