21 lines
571 B
Python
21 lines
571 B
Python
# Generated by Django 4.2.17 on 2024-12-28 21:22
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('home', '0006_changefactionprice_changeraceprice_customizeprice_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='MaintenanceMode',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('is_active', models.BooleanField(default=False)),
|
|
],
|
|
),
|
|
]
|