20 lines
493 B
Python
20 lines
493 B
Python
# Generated by Django 5.1.7 on 2025-05-29 23:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0013_opportunity_amount_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='opportunity',
|
|
name='amount',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=10, verbose_name='Amount'),
|
|
preserve_default=False,
|
|
),
|
|
]
|