add sale license to quota
This commit is contained in:
19
apps/product/migrations/0043_quota_sale_license.py
Normal file
19
apps/product/migrations/0043_quota_sale_license.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.0 on 2025-07-13 06:58
|
||||
|
||||
import django.contrib.postgres.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0042_alter_incentiveplan_unique_together'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='quota',
|
||||
name='sale_license',
|
||||
field=django.contrib.postgres.fields.ArrayField(base_field=models.IntegerField(), null=True, size=None),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user