blob: 9a195375f917ec599926c243c8b88265090057ef [file] [log] [blame]
Matteo Scandolo28ce1462019-02-25 15:11:12 -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-25 23:40
17from __future__ import unicode_literals
18
19import core.models.xosbase_header
20from django.db import migrations, models
21
22
23class Migration(migrations.Migration):
24
25 dependencies = [
26 ('onos', '0001_initial'),
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='onosapp_decl',
37 name='dependencies',
38 field=core.models.xosbase_header.StrippedCharField(blank=True, help_text=b'Comma separated list of required application application ids', max_length=1024, null=True),
39 ),
40 migrations.AlterField(
41 model_name='onosapp_decl',
42 name='url',
43 field=core.models.xosbase_header.StrippedCharField(blank=True, help_text=b'URL at which the application is available, if it needs to be downloaded', max_length=1024, null=True),
44 ),
45 migrations.AlterField(
46 model_name='onosapp_decl',
47 name='version',
48 field=core.models.xosbase_header.StrippedCharField(blank=True, help_text=b'Application version number', max_length=256, null=True),
49 ),
50 migrations.AlterField(
51 model_name='onosservice_decl',
52 name='rest_hostname',
53 field=core.models.xosbase_header.StrippedCharField(help_text=b'Hostname of ONOS Service REST endpoint', max_length=255),
54 ),
55 migrations.AlterField(
56 model_name='onosservice_decl',
57 name='rest_password',
58 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Password to use when authenticating to ONOS', max_length=255),
59 ),
60 migrations.AlterField(
61 model_name='onosservice_decl',
62 name='rest_port',
63 field=models.IntegerField(default=8181, help_text=b'Port numnber of ONOS Service REST endpoint'),
64 ),
65 migrations.AlterField(
66 model_name='onosservice_decl',
67 name='rest_username',
68 field=core.models.xosbase_header.StrippedCharField(default=b'karaf', help_text=b'Username to use when authenticating to ONOS', max_length=255),
69 ),
70 ]