parent
edf5c870f1
commit
3c500643b1
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.11 on 2024-05-12 14:07 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0039_rename_call_display_entry_fee_customuser_summons_display_entry_fee_and_more'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='groupstage', |
||||
name='name', |
||||
field=models.CharField(blank=True, max_length=200, null=True), |
||||
), |
||||
] |
||||
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.11 on 2024-05-12 14:28 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0040_groupstage_name'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='teamregistration', |
||||
name='weight', |
||||
field=models.IntegerField(default=0), |
||||
), |
||||
] |
||||
@ -0,0 +1,38 @@ |
||||
# Generated by Django 4.2.11 on 2024-05-13 09:04 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0041_teamregistration_weight'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RenameField( |
||||
model_name='teamregistration', |
||||
old_name='lock_weight', |
||||
new_name='locked_weight', |
||||
), |
||||
migrations.AddField( |
||||
model_name='court', |
||||
name='exit_allowed', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='court', |
||||
name='indoor', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='teamregistration', |
||||
name='confirmation_date', |
||||
field=models.DateTimeField(blank=True, null=True), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='playerregistration', |
||||
name='birthdate', |
||||
field=models.CharField(blank=True, max_length=20, null=True), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue