aboutsummaryrefslogtreecommitdiffstats
path: root/src/resource_inventory/migrations/0018_manual_change_rconfig_default_name.py
blob: b3459bfd47c23af186721ae5e3ea66b3e99fa79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ('resource_inventory', '0016_auto_20201109_1947'),
    ]
    operations = [
        migrations.AlterField(
            model_name='resourceconfiguration',
            name='name',
            field=models.CharField(default='opnfv-host')
        ),
    ]