blob: 0b911b3ad23f7a282ce9c16af4c5b35a5b41ef33 [file] [log] [blame]
Scott Baker94b95602015-01-03 16:19:31 -08001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5import timezones.fields
6
7
8class Migration(migrations.Migration):
9
10 dependencies = [
11 ('core', '0003_network_field_case'),
12 ]
13
14 operations = [
15 migrations.RenameField(
16 model_name='slice',
17 old_name='imagePreference',
18 new_name='image_preference',
19 ),
20 migrations.RenameField(
21 model_name='slice',
22 old_name='mountDataSets',
23 new_name='mount_data_sets',
24 ),
25 ]