feat(core): Migrations for new slash commands

ref: #690 #592 #598 #600
This commit is contained in:
2025-03-17 15:59:04 +09:30
parent 44e1461c6b
commit 9583631473

View File

@ -0,0 +1,18 @@
# Generated by Django 5.1.5 on 2025-03-17 06:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0017_alter_ticketlinkeditem_item_type_ticketcategorynotes_and_more'),
]
operations = [
migrations.AlterField(
model_name='ticketlinkeditem',
name='item_type',
field=models.IntegerField(choices=[(1, 'Cluster'), (2, 'Config Group'), (3, 'Device'), (4, 'Operating System'), (5, 'Service'), (6, 'Software'), (7, 'Knowledge Base'), (8, 'Organization'), (9, 'Team'), (10, 'Feature Flag'), (11, 'Software Version'), (12, 'Ticket Category'), (13, 'Ticket Comment Category'), (14, 'Project State')], help_text='Python Model location for linked item', verbose_name='Item Type'),
),
]