Removing project content and adding a note
[laas.git] / src / notifier / migrations / 0007_email.py
diff --git a/src/notifier/migrations/0007_email.py b/src/notifier/migrations/0007_email.py
deleted file mode 100644 (file)
index aaac048..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-# Generated by Django 2.2 on 2020-12-09 20:02
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
-    dependencies = [
-        ('notifier', '0006_emailed'),
-    ]
-
-    operations = [
-        migrations.CreateModel(
-            name='Email',
-            fields=[
-                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
-                ('sent', models.BooleanField(default=False)),
-                ('title', models.CharField(max_length=150)),
-                ('message', models.TextField()),
-                ('recipient', models.CharField(max_length=150)),
-            ],
-        ),
-    ]