parent
3c8adb5673
commit
f55d123cbf
@ -0,0 +1,21 @@ |
||||
# Generated by Django 5.1 on 2025-03-26 08:47 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('shop', '0021_alter_color_name_alter_product_sku'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterModelOptions( |
||||
name='cartitem', |
||||
options={'ordering': ['product__ordering_value', 'product__cut']}, |
||||
), |
||||
migrations.AlterModelOptions( |
||||
name='orderitem', |
||||
options={'ordering': ['product__ordering_value', 'product__cut']}, |
||||
), |
||||
] |
||||
@ -0,0 +1,43 @@ |
||||
# Generated by Django 5.1 on 2025-03-26 10:16 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('tournaments', '0111_customuser_should_synchronize'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='disable_ranking_federal_ruling', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='hide_umpire_mail', |
||||
field=models.BooleanField(default=False), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='hide_umpire_phone', |
||||
field=models.BooleanField(default=True), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='umpire_custom_contact', |
||||
field=models.CharField(blank=True, max_length=200, null=True), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='umpire_custom_mail', |
||||
field=models.EmailField(blank=True, max_length=254, null=True), |
||||
), |
||||
migrations.AddField( |
||||
model_name='tournament', |
||||
name='umpire_custom_phone', |
||||
field=models.CharField(blank=True, max_length=15, null=True), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue