You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
467 B
18 lines
467 B
# Generated by Django 5.1 on 2025-06-23 16:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tournaments', '0128_club_data_access_ids_court_data_access_ids_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='tournament',
|
|
name='currency_code',
|
|
field=models.CharField(blank=True, default='EUR', max_length=3, null=True),
|
|
),
|
|
]
|
|
|