fix: format
This commit is contained in:
parent
083af9e308
commit
93c9f73a46
|
|
@ -4,15 +4,16 @@ from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
('shop', '0008_auto_20231117_0905'),
|
("shop", "0008_auto_20231117_0905"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
migrations.AlterField(
|
migrations.AlterField(
|
||||||
model_name='checkoutinformation',
|
model_name="checkoutinformation",
|
||||||
name='product_price',
|
name="product_price",
|
||||||
field=models.IntegerField(help_text='The total price of the product in centimes -> 1000 = 10.00 CHF'),
|
field=models.IntegerField(
|
||||||
|
help_text="The total price of the product in centimes -> 1000 = 10.00 CHF"
|
||||||
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue