mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -04:00
19 lines
443 B
Python
19 lines
443 B
Python
# Generated by Django 3.2.6 on 2021-08-14 23:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='class',
|
|
name='challenges_completed',
|
|
field=models.ManyToManyField(blank=True, related_name='classes_completed', to='main.Challenge'),
|
|
),
|
|
]
|