Removing project content and adding a note
[laas.git] / src / account / migrations / 0004_downtime.py
diff --git a/src/account/migrations/0004_downtime.py b/src/account/migrations/0004_downtime.py
deleted file mode 100644 (file)
index fc700d1..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-# Generated by Django 2.2 on 2019-08-13 16:45
-
-from django.db import migrations, models
-import django.db.models.deletion
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('account', '0003_publicnetwork'),
-    ]
-
-    operations = [
-        migrations.CreateModel(
-            name='Downtime',
-            fields=[
-                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
-                ('start', models.DateTimeField()),
-                ('end', models.DateTimeField()),
-                ('description', models.TextField(default='This lab will be down for maintenance')),
-                ('lab', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='account.Lab')),
-            ],
-        ),
-    ]