31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# Generated by Django 5.0.2 on 2026-05-04 09:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pages', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ContactSubmission',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=200)),
|
|
('title', models.CharField(max_length=300)),
|
|
('description', models.TextField()),
|
|
('email', models.EmailField(blank=True, max_length=254)),
|
|
('submitted_at', models.DateTimeField(auto_now_add=True)),
|
|
('is_read', models.BooleanField(default=False)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Contact Submission',
|
|
'verbose_name_plural': 'Contact Submissions',
|
|
'ordering': ['-submitted_at'],
|
|
},
|
|
),
|
|
]
|