creating template from submitted jobs
[qcg-portal.git] / qcg / migrations / 0004_auto_20150505_1202.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('qcg', '0003_jobtemplate'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='job',
16             name='description_type',
17             field=models.IntegerField(blank=True, null=True, verbose_name='Typ opisu', choices=[(0, b'JSDL'), (1, b'QCG'), (2, b'QCG_SIMPLE')]),
18             preserve_default=True,
19         ),
20         migrations.AddField(
21             model_name='job',
22             name='qcg_description',
23             field=models.TextField(default=b'', verbose_name='Opis QCG', blank=True),
24             preserve_default=True,
25         ),
26         migrations.AddField(
27             model_name='task',
28             name='description_type',
29             field=models.IntegerField(blank=True, null=True, verbose_name='Typ opisu', choices=[(0, b'JSDL'), (1, b'QCG'), (2, b'QCG_SIMPLE')]),
30             preserve_default=True,
31         ),
32     ]