1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| # Generated by Django 2.1.5 on 2019-02-20 18:42
|
| import django.contrib.postgres.fields.jsonb
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('nodeodm', '0005_auto_20190115_1346'),
| ]
|
| operations = [
| migrations.AlterField(
| model_name='processingnode',
| name='available_options',
| field=django.contrib.postgres.fields.jsonb.JSONField(default=dict, help_text='Description of the options that can be used for processing'),
| ),
| migrations.AlterField(
| model_name='processingnode',
| name='label',
| field=models.CharField(blank=True, default='', help_text='Optional label for this node. When set, this label will be shown instead of the hostname:port name.', max_length=255),
| ),
| ]
|
|