diff --git a/conservancy/contacts/migrations/0001_initial.py b/conservancy/contacts/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..e10b2fabcaf6db905cc477b786bd0279efbe5714 --- /dev/null +++ b/conservancy/contacts/migrations/0001_initial.py @@ -0,0 +1,32 @@ +# Generated by Django 4.2.11 on 2024-04-09 08:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [] + + operations = [ + migrations.CreateModel( + name='Unsubscription', + fields=[ + ( + 'id', + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name='ID', + ), + ), + ('created', models.DateTimeField(auto_now_add=True)), + ('email', models.EmailField(max_length=254)), + ], + options={ + 'ordering': ['created'], + }, + ), + ]