aboutsummaryrefslogtreecommitdiffstats
path: root/lib/orm/migrations/0007_components_errorlog.py
blob: 88a02ee1b42436a948154604eae7a5d32dd6ca19 (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
39
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2020-02-01 03:09
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('orm', '0006_reconcile'),
    ]

    operations = [
        migrations.CreateModel(
            name='ErrorLog',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('severity', models.IntegerField(default=0)),
                ('description', models.TextField(blank=True)),
                ('srt_created', models.DateTimeField(auto_now_add=True, null=True)),
            ],
        ),
        migrations.AddField(
            model_name='defect',
            name='packages',
            field=models.TextField(blank=True),
        ),
        migrations.AddField(
            model_name='investigation',
            name='packages',
            field=models.TextField(blank=True),
        ),
        migrations.AddField(
            model_name='vulnerability',
            name='packages',
            field=models.TextField(blank=True),
        ),
    ]