Skip to content

Commit

Permalink
Merge pull request #109 from Duke-GCB/add-missing-migration
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
johnbradley authored Nov 6, 2017
2 parents 88ff5ed + c6dceb2 commit 25b3267
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions data/migrations/0038_auto_20171106_1623.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2017-11-06 16:23
from __future__ import unicode_literals

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


class Migration(migrations.Migration):

dependencies = [
('data', '0037_rename_joboutputdir_20171013_1411'),
]

operations = [
migrations.AlterField(
model_name='job',
name='state',
field=models.CharField(choices=[('N', 'New'), ('A', 'Authorized'), ('S', 'Starting'), ('R', 'Running'), ('F', 'Finished'), ('E', 'Error'), ('c', 'Canceling'), ('C', 'Canceled'), ('r', 'Restarting'), ('D', 'Deleted')], default='N', help_text='High level state of the project', max_length=1),
),
migrations.AlterField(
model_name='jobddsoutputproject',
name='job',
field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name='output_project', to='data.Job'),
),
]

0 comments on commit 25b3267

Please sign in to comment.