mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-20 09:37:48 +02:00
Add migration for updated TicketChange model (increase max_length to 200 from 100)
This commit is contained in:
parent
13ca69c7b8
commit
aab7dfa78f
18
helpdesk/migrations/0039_alter_ticketchange_field.py
Normal file
18
helpdesk/migrations/0039_alter_ticketchange_field.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 5.2.1 on 2025-06-02 09:56
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('helpdesk', '0038_checklist_checklisttemplate_checklisttask'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='ticketchange',
|
||||||
|
name='field',
|
||||||
|
field=models.CharField(max_length=200, verbose_name='Field'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
x
Reference in New Issue
Block a user