parent
7b7c5fdb71
commit
4f4b293d52
@ -0,0 +1,33 @@ |
||||
# Generated by Django 5.1 on 2025-05-19 09:33 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0123_teamregistration_unique_random_index'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='playerregistration', |
||||
name='club_code', |
||||
field=models.CharField(blank=True, max_length=20, null=True), |
||||
), |
||||
migrations.AddField( |
||||
model_name='playerregistration', |
||||
name='club_member', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='club_member_fee_deduction', |
||||
field=models.FloatField(blank=True, null=True), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='club', |
||||
name='code', |
||||
field=models.CharField(blank=True, max_length=20, null=True), |
||||
), |
||||
] |
||||
@ -0,0 +1,18 @@ |
||||
# Generated by Django 5.1 on 2025-05-19 13:05 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0124_playerregistration_club_code_and_more'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='unregister_delta_in_hours', |
||||
field=models.IntegerField(default=24), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue