blob: a3ab6d93bbbb0d43e9b950220c29809a41e0d9a9 [file] [log] [blame]
Scott Baker294d8382019-04-09 16:12:11 -07001# 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.20 on 2019-04-09 23:19
17from __future__ import unicode_literals
18
19import core.models.xosbase_header
20from django.db import migrations
21
22
23class Migration(migrations.Migration):
24
25 dependencies = [
26 ('onos', '0004_auto_20190312_1829'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='onosservice_decl',
32 name='rest_hostname',
33 field=core.models.xosbase_header.StrippedCharField(help_text=b'Hostname of ONOS Service REST endpoint', max_length=256),
34 ),
35 migrations.AlterField(
36 model_name='onosservice_decl',
37 name='rest_password',
38 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Password to use when authenticating to ONOS', max_length=256),
39 ),
40 migrations.AlterField(
41 model_name='onosservice_decl',
42 name='rest_username',
43 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Username to use when authenticating to ONOS', max_length=256),
44 ),
45 ]