rename camelcase fields in slice
[plstackapi.git] / planetstack / core / migrations / 0004_slice_field_case.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5 import timezones.fields
6
7
8 class 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     ]