22 lines
562 B
Python
22 lines
562 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.1 on 2018-08-02 07:58
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('website', '0002_enable_compression'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='workload',
|
|
name='status',
|
|
field=models.IntegerField(choices=[(1, 'MODIFIED'), (2, 'PROCESSING'), (3, 'PROCESSED')], default=1, editable=False),
|
|
)
|
|
]
|