stash
This commit is contained in:
parent
573f11e8e4
commit
d9fe1e122c
2 changed files with 21 additions and 2 deletions
19
core/tickets/migrations/0011_issuethread_related_items.py
Normal file
19
core/tickets/migrations/0011_issuethread_related_items.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 4.2.7 on 2024-06-14 17:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('inventory', '0004_alter_event_created_at_alter_item_created_at'),
|
||||
('tickets', '0010_itemrelation'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='issuethread',
|
||||
name='related_items',
|
||||
field=models.ManyToManyField(through='tickets.ItemRelation', to='inventory.item'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue