haikal/inventory/migrations/0006_alter_schedule_purpose.py
Marwan Alwali e9c9445377 Revert "fixup! update"
This reverts commit 5e5eec299a4432784a9114264f6e7d39402a9812.
2025-03-14 02:12:50 +03:00

19 lines
603 B
Python

# Generated by Django 4.2.17 on 2025-02-04 15:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('inventory', '0005_schedule'),
]
operations = [
migrations.AlterField(
model_name='schedule',
name='purpose',
field=models.CharField(choices=[('Product Demo', 'Product Demo'), ('Follow-Up Call', 'Follow-Up Call'), ('Contract Discussion', 'Contract Discussion'), ('Sales Meeting', 'Sales Meeting'), ('Support Call', 'Support Call'), ('Other', 'Other')], max_length=200),
),
]