summaryrefslogtreecommitdiffstats
path: root/dashboard/src/booking/migrations/0002_booking_changeid.py
blob: 33af8fda6ad1d2ea3db16c13c03102fcb94de1af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2017-12-13 15:06
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

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

    operations = [
        migrations.CreateModel(
            name='Opsys',
            fields=[
                ('id', models.AutoField(primary_key=True, serialize=False)),
                ('name', models.CharField(max_length=100)),
            ],
        ),
        migrations.AddField(
            model_name='booking',
            name='opsys',
            field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='booking.Opsys'),
        ),
        migrations.AddField(
            model_name='booking',
            name='changeid',
            field=models.TextField(default='no change ID'),
        ),
        migrations.AlterField(
            model_name='booking',
            name='changeid',
            field=models.TextField(blank=True, default='no change ID', null=True),
        ),
    ]