blob: fa712efff686400cd03dcf2d493159ff1b7dd817 [file] [log] [blame]
Scott Bakerbf209942019-03-08 10:53:43 -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-03-08 19:37
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20import django.utils.timezone
21
22
23class Migration(migrations.Migration):
24
25 dependencies = [
26 ('rcord', '0002_auto_20190305_0241'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='rcordipaddress_decl',
32 name='backend_status',
33 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
34 ),
35 migrations.AlterField(
36 model_name='rcordipaddress_decl',
37 name='leaf_model_name',
38 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
39 ),
40 migrations.AlterField(
41 model_name='rcordipaddress_decl',
42 name='updated',
43 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
44 ),
45 migrations.AlterField(
46 model_name='rcordservice_decl',
47 name='access',
48 field=models.CharField(choices=[(b'voltha', b'VOLTHA'), (b'unknown', b'Unknown')], default=b'voltha', help_text=b'Name of service that is managing the Access Network', max_length=30),
49 ),
50 migrations.AlterField(
51 model_name='rcordsubscriber_decl',
52 name='onu_device',
53 field=models.TextField(help_text=b'ONUDevice serial number'),
54 ),
55 migrations.AlterUniqueTogether(
56 name='rcordipaddress_decl',
57 unique_together=set([('ip', 'subscriber')]),
58 ),
59 ]