diff --git a/server/vbv_lernwelt/shop/migrations/0009_alter_checkoutinformation_product_price.py b/server/vbv_lernwelt/shop/migrations/0009_alter_checkoutinformation_product_price.py index b435d14b..01f1b3a8 100644 --- a/server/vbv_lernwelt/shop/migrations/0009_alter_checkoutinformation_product_price.py +++ b/server/vbv_lernwelt/shop/migrations/0009_alter_checkoutinformation_product_price.py @@ -4,15 +4,16 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('shop', '0008_auto_20231117_0905'), + ("shop", "0008_auto_20231117_0905"), ] operations = [ migrations.AlterField( - model_name='checkoutinformation', - name='product_price', - field=models.IntegerField(help_text='The total price of the product in centimes -> 1000 = 10.00 CHF'), + model_name="checkoutinformation", + name="product_price", + field=models.IntegerField( + help_text="The total price of the product in centimes -> 1000 = 10.00 CHF" + ), ), ]