Initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# 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='')),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user