allianceauth/allianceauth/authentication/migrations/0026_alter_userprofile_theme.py
2025-03-05 11:48:43 +10:00

19 lines
513 B
Python

# Generated by Django 5.1.6 on 2025-03-05 00:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0025_v5squash'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='theme',
field=models.CharField(blank=True, default='', help_text='Bootstrap 5 Themes from https://bootswatch.com/ or Community Apps', max_length=200, verbose_name='Theme'),
),
]