commition field added to shop model
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.1.2 on 2025-11-17 05:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('account', '0032_specialdiscountcode'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='shopmodel',
|
||||
name='commission_percent',
|
||||
field=models.DecimalField(decimal_places=2, default=0, max_digits=5, verbose_name='درصد کمیسیون'),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user