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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Generated by Django 2.2.9 on 2020-04-03 14:07
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='ApplicableSystem',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=256)),
('description', models.TextField(max_length=1000)),
],
options={
'verbose_name': 'Applicable System',
},
),
migrations.CreateModel(
name='CAF',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('version', models.CharField(blank=True, max_length=10, null=True)),
('triage_review_date', models.DateField(blank=True, null=True)),
('comments', models.TextField(max_length=1000)),
],
options={
'verbose_name': 'CAF',
},
),
migrations.CreateModel(
name='DocumentFile',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=255)),
('type', models.IntegerField(choices=[(1, 'Excel'), (2, 'Word'), (3, 'PDF'), (4, 'Hard Copy')], default=1)),
],
),
migrations.CreateModel(
name='FileStore',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('descriptor', models.CharField(max_length=100)),
('virtual_location', models.CharField(help_text='USB, Rosa, email, etc', max_length=100)),
('physical_location', models.CharField(blank=True, help_text='Cupboard, room, building, etc', max_length=100)),
],
),
migrations.CreateModel(
name='Grading',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('descriptor', models.CharField(help_text='Q1, C1, etc', max_length=2)),
('description', models.TextField(max_length=250)),
('type', models.CharField(choices=[('CONFIDENCE', 'Confidence'), ('QUALITY', 'Quality'), ('MISC', 'Misc')], help_text='Type of grading', max_length=20)),
],
),
]
|