26 lines
852 B
Python
26 lines
852 B
Python
# Generated by Django 5.2.3 on 2025-11-09 21:01
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0010_documentationdelaytracker'),
|
|
('finance', '0006_add_session_order_to_package_service'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='payment',
|
|
name='is_commission_free',
|
|
field=models.BooleanField(default=False, help_text='Mark this payment as commission-free (no commission charged)', verbose_name='Commission Free'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='payment',
|
|
index=models.Index(fields=['is_commission_free'], name='finance_pay_is_comm_db4268_idx'),
|
|
),
|
|
]
|