Regenerated initial migrations for account, advertisement, commerce, configuration, and social apps to include recent schema changes and remove obsolete migration files. Added new migrations for Deutsche Post and Zasilkovna integrations, including new fields and choices. Updated commerce models to improve currency handling and discount code logic. This unifies the database schema and prepares for new features and integrations.
24 lines
620 B
Python
24 lines
620 B
Python
# Generated by Django 5.2.7 on 2026-01-24 22:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ContactMe',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('client_email', models.EmailField(max_length=254)),
|
|
('content', models.TextField()),
|
|
('sent_at', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|