mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -04:00
19 lines
374 B
Python
19 lines
374 B
Python
# Generated by Django 3.2.6 on 2021-08-14 22:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='is_staff',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|