blob: e0690ba69149905fbdc593de99066e3a1c8100f0 [file] [log] [blame]
Scott Baker5840a932019-03-12 15:28:52 -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.11 on 2019-03-12 22:29
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', '0003_auto_20190305_0236'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='onosapp_decl',
32 name='app_id',
33 field=core.models.xosbase_header.StrippedCharField(help_text=b'Application identifier', max_length=256),
34 ),
35 migrations.AlterField(
36 model_name='onosservice_decl',
37 name='rest_hostname',
38 field=core.models.xosbase_header.StrippedCharField(help_text=b'Hostname of ONOS Service REST endpoint', max_length=255),
39 ),
40 migrations.AlterField(
41 model_name='onosservice_decl',
42 name='rest_password',
43 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Password to use when authenticating to ONOS', max_length=255),
44 ),
45 migrations.AlterField(
46 model_name='onosservice_decl',
47 name='rest_username',
48 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Username to use when authenticating to ONOS', max_length=255),
49 ),
50 ]