bad6d97178d1534952ecc55fffb22417490642f5
[plstackapi.git] / planetstack / core / migrations / 0005_network_sdn.py
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('core', '0004_auto_20141006_1719'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='network',
16             name='controllerParameters',
17             field=models.TextField(null=True, blank=True),
18             preserve_default=True,
19         ),
20         migrations.AddField(
21             model_name='network',
22             name='topologyParameters',
23             field=models.TextField(null=True, blank=True),
24             preserve_default=True,
25         ),
26         migrations.AddField(
27             model_name='networktemplate',
28             name='controllerKind',
29             field=models.CharField(default=None, max_length=30, null=True, blank=True, choices=[(None, b'None'), (b'onos', b'ONOS'), (b'custom', b'Custom')]),
30             preserve_default=True,
31         ),
32         migrations.AddField(
33             model_name='networktemplate',
34             name='topologyKind',
35             field=models.CharField(default=b'BigSwitch', max_length=30, choices=[(b'bigswitch', b'BigSwitch'), (b'physical', b'Physical'), (b'custom', b'Custom')]),
36             preserve_default=True,
37         ),
38     ]