aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/resource_inventory/migrations/0018_manual_change_rconfig_default_name.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/resource_inventory/migrations/0018_manual_change_rconfig_default_name.py b/src/resource_inventory/migrations/0018_manual_change_rconfig_default_name.py
new file mode 100644
index 0000000..b3459bf
--- /dev/null
+++ b/src/resource_inventory/migrations/0018_manual_change_rconfig_default_name.py
@@ -0,0 +1,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')
+ ),
+ ]