21 lines
535 B
Python
21 lines
535 B
Python
# Generated by Django 5.1.4 on 2025-01-11 10:32
|
|
|
|
import inventory.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0011_remove_customer_country_customer_city'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='opportunity',
|
|
name='probability',
|
|
field=models.PositiveIntegerField(default=70, validators=[inventory.models.validate_probability]),
|
|
preserve_default=False,
|
|
),
|
|
]
|