summaryrefslogtreecommitdiff
path: root/app/posts/migrations/0024_alter_trip_options_trip_dek.py
blob: 56f8e1aeba617261fa41b5eaf2374f713ff8b48c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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),
        ),
    ]