list of organizations by province - some changes in quota an models of that

This commit is contained in:
2025-06-10 14:53:01 +03:30
parent 2482b9bc45
commit b52baa5d3b
5 changed files with 88 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
# Generated by Django 5.0 on 2025-06-10 11:22
import django.contrib.postgres.fields
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('product', '0017_incentiveplan_create_date_incentiveplan_created_by_and_more'),
]
operations = [
migrations.AlterField(
model_name='quota',
name='distribution_mode',
field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(), blank=True, null=True, size=None),
),
migrations.AlterField(
model_name='quotaincentiveassignment',
name='incentive_plan',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='quota_assignment', to='product.incentiveplan'),
),
]