user model needed its GetValidators method
[plstackapi.git] / planetstack / core / migrations / 0002_network_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', '0001_initial'),
12     ]
13
14     operations = [
15         migrations.RenameField(
16             model_name='networktemplate',
17             old_name='controllerKind',
18             new_name='controller_kind',
19         ),
20         migrations.RenameField(
21             model_name='networktemplate',
22             old_name='guaranteedBandwidth',
23             new_name='guaranteed_bandwidth',
24         ),
25         migrations.RenameField(
26             model_name='networktemplate',
27             old_name='sharedNetworkId',
28             new_name='shared_network_id',
29         ),
30         migrations.RenameField(
31             model_name='networktemplate',
32             old_name='sharedNetworkName',
33             new_name='shared_network_name',
34         ),
35         migrations.RenameField(
36             model_name='networktemplate',
37             old_name='topologyKind',
38             new_name='topology_kind',
39         ),
40     ]