blob: 3420b18f4f2172f37ebafe5012d8f77749f6e90a [file] [log] [blame]
Scott Baker9f30c4d2019-03-04 23:07:16 -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-05 07:41
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', '0001_initial'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='rcordipaddress_decl',
32 name='backend_status',
33 field=models.CharField(blank=True, 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(blank=True, 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(blank=True, 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(blank=True, 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(blank=True, help_text=b'ONUDevice serial number'),
54 ),
55 ]