blob: f4a4654c448e430fda3ef26f36d43a6ed79ef201 [file] [log] [blame]
Matteo Scandolo90f9f312019-02-20 17:35:59 -08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# -*- coding: utf-8 -*-
16# Generated by Django 1.11.11 on 2019-02-21 01:31
17from __future__ import unicode_literals
18
19import core.models.xosbase_header
20from django.db import migrations, models
21import django.db.models.deletion
22import django.utils.timezone
23
24
25class Migration(migrations.Migration):
26
27 initial = True
28
29 dependencies = [
30 ('core', '0002_initial_data'),
31 ]
32
33 operations = [
34 migrations.CreateModel(
35 name='BNGPortMapping_decl',
36 fields=[
37 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
38 ('created', models.DateTimeField(auto_now_add=True, help_text=b'Time this model was created')),
39 ('updated', models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer')),
40 ('enacted', models.DateTimeField(blank=True, default=None, help_text=b'When synced, set to the timestamp of the data that was synced', null=True)),
41 ('policed', models.DateTimeField(blank=True, default=None, help_text=b'When policed, set to the timestamp of the data that was policed', null=True)),
42 ('backend_register', models.CharField(blank=True, default=b'{}', max_length=1024, null=True)),
43 ('backend_need_delete', models.BooleanField(default=False)),
44 ('backend_need_reap', models.BooleanField(default=False)),
45 ('backend_status', models.CharField(default=b'Provisioning in progress', max_length=1024, null=True)),
46 ('backend_code', models.IntegerField(default=0)),
47 ('deleted', models.BooleanField(default=False)),
48 ('write_protect', models.BooleanField(default=False)),
49 ('lazy_blocked', models.BooleanField(default=False)),
50 ('no_sync', models.BooleanField(default=False)),
51 ('no_policy', models.BooleanField(default=False)),
52 ('policy_status', models.CharField(blank=True, default=b'Policy in process', max_length=1024, null=True)),
53 ('policy_code', models.IntegerField(blank=True, default=0, null=True)),
54 ('leaf_model_name', models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024)),
55 ('backend_need_delete_policy', models.BooleanField(default=False, help_text=b'True if delete model_policy must be run before object can be reaped')),
56 ('xos_managed', models.BooleanField(default=True, help_text=b'True if xos is responsible for creating/deleting this object')),
57 ('backend_handle', models.CharField(blank=True, help_text=b'Handle used by the backend to track this object', max_length=1024, null=True)),
58 ('changed_by_step', models.DateTimeField(blank=True, default=None, help_text=b'Time this model was changed by a sync step', null=True)),
59 ('changed_by_policy', models.DateTimeField(blank=True, default=None, help_text=b'Time this model was changed by a model policy', null=True)),
60 ('s_tag', models.TextField(help_text=b"Single s-tag, range of s-tags, or 'ANY'", unique=True)),
61 ('switch_port', models.IntegerField(help_text=b'Switch port where BNG or other egress point is connected')),
62 ],
63 options={
64 'verbose_name': 'BNGPortMapping',
65 },
66 bases=(models.Model, core.models.xosbase_header.PlModelMixIn),
67 ),
68 migrations.CreateModel(
69 name='FabricCrossconnectService_decl',
70 fields=[
71 ('service_decl_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.Service_decl')),
72 ],
73 options={
74 'verbose_name': 'Fabric Crossconnect Service',
75 },
76 bases=('core.service',),
77 ),
78 migrations.CreateModel(
79 name='FabricCrossconnectServiceInstance_decl',
80 fields=[
81 ('serviceinstance_decl_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='core.ServiceInstance_decl')),
82 ('s_tag', models.IntegerField(help_text=b'vlan tag of packets to crossconnect')),
83 ('switch_datapath_id', core.models.xosbase_header.StrippedCharField(help_text=b'Datapath id of switch where crossconnect will be installed', max_length=256)),
84 ('source_port', models.IntegerField(help_text=b'switch port where access device or VM is connected')),
85 ],
86 options={
87 'verbose_name': 'Fabric Crossconnect Service Instance',
88 },
89 bases=('core.serviceinstance',),
90 ),
91 migrations.CreateModel(
92 name='BNGPortMapping',
93 fields=[
94 ],
95 options={
96 'proxy': True,
97 'indexes': [],
98 },
99 bases=('fabric-crossconnect.bngportmapping_decl',),
100 ),
101 migrations.CreateModel(
102 name='FabricCrossconnectService',
103 fields=[
104 ],
105 options={
106 'proxy': True,
107 'indexes': [],
108 },
109 bases=('fabric-crossconnect.fabriccrossconnectservice_decl',),
110 ),
111 migrations.CreateModel(
112 name='FabricCrossconnectServiceInstance',
113 fields=[
114 ],
115 options={
116 'proxy': True,
117 'indexes': [],
118 },
119 bases=('fabric-crossconnect.fabriccrossconnectserviceinstance_decl',),
120 ),
121 ]