26 lines
887 B
Python
26 lines
887 B
Python
# Generated by Django 6.0.7 on 2026-07-31 07:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='BrandingSetting',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('app_name', models.CharField(default='Veranstaltungsschichtplaner', max_length=200)),
|
|
('logo_url', models.CharField(blank=True, default='', max_length=500)),
|
|
('primary_color', models.CharField(default='#2563eb', max_length=50)),
|
|
('secondary_color', models.CharField(default='#4f46e5', max_length=50)),
|
|
('custom_banner_text', models.TextField(blank=True, default='')),
|
|
],
|
|
),
|
|
]
|