mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -04:00
23 lines
464 B
Python
23 lines
464 B
Python
# Generated by Django 3.2.6 on 2021-08-14 23:54
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_user_is_staff'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='user',
|
|
old_name='is_staff',
|
|
new_name='_is_staff',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='user',
|
|
name='hoco_class',
|
|
),
|
|
]
|