20 lines
578 B
Python
20 lines
578 B
Python
# Generated by Django 4.2.2 on 2023-07-06 21:32
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0033_remove_user_manager_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='promocode',
|
|
name='discount',
|
|
field=models.DecimalField(decimal_places=2, max_digits=10, validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(100)], verbose_name='Скидка'),
|
|
),
|
|
]
|