# Generated by Django 6.0.6 on 2026-07-14 08:00 import django.db.models.deletion import uuid from django.conf import settings from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('features', '0001_initial'), migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='Maintenance', fields=[ ('created', models.DateTimeField(auto_now_add=True, verbose_name='created')), ('modified', models.DateTimeField(auto_now=True, verbose_name='modified')), ('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)), ('is_active', models.BooleanField(default=False, verbose_name='active')), ('message', models.TextField(blank=True, help_text='Shown to clubs while the platform is locked down.', verbose_name='message')), ('started_at', models.DateTimeField(blank=True, null=True, verbose_name='started at')), ('started_by', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='maintenance_windows', to=settings.AUTH_USER_MODEL, verbose_name='started by')), ], options={ 'verbose_name': 'maintenance', 'verbose_name_plural': 'maintenance', }, ), ]