23 lines
792 B
Python
23 lines
792 B
Python
|
# Generated by Django 4.0.5 on 2022-09-03 15:37
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('homepage', '0020_rename_eventdatevotes_eventdatevote'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Setting',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('active', models.BooleanField(default=True)),
|
||
|
('intro_text', models.TextField(blank=True)),
|
||
|
('intro_text_classes', models.CharField(blank=True, default='text-center fs-5', help_text='Extra CSS classes for the div for the intro text like text size', max_length=500)),
|
||
|
],
|
||
|
),
|
||
|
]
|