mirror of
https://github.com/ferdzo/serviceCRM.git
synced 2026-04-05 05:06:25 +00:00
19 lines
571 B
Python
19 lines
571 B
Python
# Generated by Django 6.0.1 on 2026-01-08 11:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('serviceCRM', '0006_insert_date_close'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='insert',
|
|
name='status',
|
|
field=models.CharField(choices=[('RECEIVED', 'Received'), ('DIAGNOSING', 'Diagnosing'), ('WAITING_PARTS', 'Waiting for Parts'), ('READY', 'Ready for Pickup'), ('COMPLETED', 'Completed')], default='RECEIVED', max_length=20),
|
|
),
|
|
]
|