chore: squash migrations

reduces the amount required

ref: #702
This commit is contained in:
2025-04-10 12:05:43 +09:30
parent 32251d0a08
commit 32d97932d1
11 changed files with 142 additions and 264 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 5.1.5 on 2025-04-03 22:11
# Generated by Django 5.2 on 2025-04-10 02:34
from django.db import migrations, models
@ -13,6 +13,6 @@ class Migration(migrations.Migration):
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'), (15, 'Git Repository'), (16, 'Entity')], help_text='Python Model location for linked item', verbose_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'), (15, 'Git Repository'), (16, 'Entity'), (17, 'Role')], help_text='Python Model location for linked item', verbose_name='Item Type'),
),
]

View File

@ -1,18 +0,0 @@
# Generated by Django 5.2 on 2025-04-06 03:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0021_alter_ticketlinkeditem_item_type'),
]
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'), (15, 'Git Repository'), (16, 'Entity'), (17, 'Role')], help_text='Python Model location for linked item', verbose_name='Item Type'),
),
]