mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -04:00
19 lines
389 B
Python
19 lines
389 B
Python
# Generated by Django 3.2.7 on 2021-09-20 08:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0006_category_category'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='challenge',
|
|
name='available',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|