Aucune description

0023_alter_vendororder_price.py 439B

12345678910111213141516171819
  1. # Generated by Django 3.2.6 on 2021-08-09 08:09
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('fruit', '0022_alter_vendororder_product'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='vendororder',
  10. name='price',
  11. field=models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True),
  12. ),
  13. ]