Skip to content

Commit

Permalink
migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
rloomans committed Dec 19, 2016
1 parent 351c34a commit dd9a2ea
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions teamtemp/responses/migrations/0009_auto_20161219_1143.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-19 01:43
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('responses', '0008_auto_20161216_1300'),
]

operations = [
migrations.AlterField(
model_name='teamtemperature',
name='dept_names',
field=models.CharField(blank=True, default=b'DEPT,DEPT2', max_length=64),
),
migrations.AlterField(
model_name='teamtemperature',
name='region_names',
field=models.CharField(blank=True, default=b'REGION,REGION2', max_length=64),
),
migrations.AlterField(
model_name='teamtemperature',
name='site_names',
field=models.CharField(blank=True, default=b'SITE,SITE2', max_length=64),
),
]

0 comments on commit dd9a2ea

Please sign in to comment.