aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/migrations/0018_cloudinitfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/migrations/0018_cloudinitfile.py')
-rw-r--r--src/api/migrations/0018_cloudinitfile.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/api/migrations/0018_cloudinitfile.py b/src/api/migrations/0018_cloudinitfile.py
deleted file mode 100644
index 4e41b39..0000000
--- a/src/api/migrations/0018_cloudinitfile.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# Generated by Django 2.2 on 2021-07-01 20:45
-
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('resource_inventory', '0019_auto_20210701_1947'),
- ('booking', '0008_auto_20201109_1947'),
- ('api', '0017_auto_20210630_1629'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='CloudInitFile',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('resource_id', models.CharField(max_length=200)),
- ('booking', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='booking.Booking')),
- ('rconfig', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='resource_inventory.ResourceConfiguration')),
- ],
- ),
- ]