Skip to content

Commit

Permalink
fix initial migration for released django 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
thenewguy committed Sep 7, 2014
1 parent 4bcdc11 commit ab4cf43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dj_elastictranscoder/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# encoding: utf8
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations
Expand All @@ -15,12 +15,12 @@ class Migration(migrations.Migration):
name='EncodeJob',
fields=[
('id', models.CharField(max_length=100, serialize=False, primary_key=True)),
('content_type', models.ForeignKey(to='contenttypes.ContentType', to_field='id')),
('object_id', models.PositiveIntegerField()),
('state', models.PositiveIntegerField(default=0, db_index=True, choices=[(0, b'Submitted'), (1, b'Progressing'), (2, b'Error'), (3, b'Warning'), (4, b'Complete')])),
('state', models.PositiveIntegerField(default=0, db_index=True, choices=[(0, b'Submitted'), (1, b'Progressing'), (2, b'Error'), (3, b'Complete')])),
('message', models.TextField()),
('created_at', models.DateTimeField(auto_now_add=True)),
('last_modified', models.DateTimeField(auto_now=True)),
('content_type', models.ForeignKey(to='contenttypes.ContentType')),
],
options={
},
Expand Down

0 comments on commit ab4cf43

Please sign in to comment.