mirror of
https://github.com/tjsga/scavenger-hunt-2022.git
synced 2025-04-09 23:00:16 -04:00
19 lines
394 B
Python
19 lines
394 B
Python
# Generated by Django 3.2.6 on 2022-09-21 00:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0004_alter_user_challenges_done'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='dark_mode',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|