summaryrefslogtreecommitdiff
path: root/app/planner/migrations/0003_trip.py
blob: 41d410c53886f5f55c73d65db7d9e33250c739e1 (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 3.2.5 on 2021-08-15 18:55

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('planner', '0002_auto_20210725_1548'),
    ]

    operations = [
        migrations.CreateModel(
            name='Trip',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=200)),
                ('date', models.DateField()),
                ('slug', models.SlugField(unique_for_date='pub_date')),
            ],
        ),
    ]