Skip to content

Commit

Permalink
Migration file for 13269bc
Browse files Browse the repository at this point in the history
  • Loading branch information
db0company committed Jan 20, 2017
1 parent 13269bc commit 42c72d3
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions api/migrations/0155_auto_20170120_1909.py
@@ -0,0 +1,38 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('api', '0154_auto_20170116_0228'),
]

operations = [
migrations.AddField(
model_name='event',
name='english_t3_points',
field=models.PositiveIntegerField(null=True, blank=True),
preserve_default=True,
),
migrations.AddField(
model_name='event',
name='english_t3_rank',
field=models.PositiveIntegerField(null=True, blank=True),
preserve_default=True,
),
migrations.AddField(
model_name='event',
name='japanese_t3_points',
field=models.PositiveIntegerField(null=True, blank=True),
preserve_default=True,
),
migrations.AddField(
model_name='event',
name='japanese_t3_rank',
field=models.PositiveIntegerField(null=True, blank=True),
preserve_default=True,
),
]

0 comments on commit 42c72d3

Please sign in to comment.