blob: aa9433889b53a66d93f18f2a8ff9ab730edd2cef [file] [log] [blame]
Scott Baker2dced862015-01-03 11:45:45 -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', '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 ]