mirror of
https://github.com/tjsga/scavenger-hunt-2022.git
synced 2025-04-09 23:00:16 -04:00
20 lines
495 B
Python
20 lines
495 B
Python
# Generated by Django 3.2.6 on 2022-09-16 00:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0012_alter_class_year'),
|
|
('users', '0003_auto_20210814_2354'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='challenges_done',
|
|
field=models.ManyToManyField(blank=True, related_name='users_that_completed', to='main.Challenge'),
|
|
),
|
|
]
|