This commit is contained in:
behruz-dev
2025-11-10 16:29:22 +05:00
parent fb5b13fb27
commit e4e3b83a8c
4 changed files with 53 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.4 on 2025-11-10 16:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('orders', '0035_order_completion_percentage_order_received_count_and_more'),
]
operations = [
migrations.AddField(
model_name='offer',
name='is_deleted',
field=models.BooleanField(default=False),
),
]