19 lines
410 B
Python
19 lines
410 B
Python
# Generated by Django 4.2.29 on 2026-06-20 04:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("discgolf", "0002_discgolfcourse_trail"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="discgolfcourse",
|
|
name="par_per_hole",
|
|
field=models.JSONField(blank=True, null=True),
|
|
),
|
|
]
|