Scaffold containerized Django/Wagtail app with core features
This commit is contained in:
24
apps/newsletter/migrations/0001_initial.py
Normal file
24
apps/newsletter/migrations/0001_initial.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 5.2.11 on 2026-02-28 11:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='NewsletterSubscription',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('email', models.EmailField(max_length=254, unique=True)),
|
||||
('confirmed', models.BooleanField(default=False)),
|
||||
('source', models.CharField(default='unknown', max_length=100)),
|
||||
('created_at', models.DateTimeField(auto_now_add=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
0
apps/newsletter/migrations/__init__.py
Normal file
0
apps/newsletter/migrations/__init__.py
Normal file
Reference in New Issue
Block a user