mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 11:22:24 +02:00
17 lines
408 B
Python
17 lines
408 B
Python
# Generated by Django 4.2 on 2023-05-15 09:33
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("order", "0018_order_articles_nb"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="order",
|
|
name="price",
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=10),
|
|
),
|
|
]
|