summaryrefslogtreecommitdiffstats
path: root/dashboard/src/booking/migrations/0002_booking_pdf.py
blob: 53232c986a60081482bc487758b54dd298508e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 2.1 on 2018-11-09 16:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('booking', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='booking',
            name='pdf',
            field=models.TextField(blank=True, default=''),
        ),
    ]