25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
# Generated by Django 4.2.7 on 2024-05-22 18:19
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0004_alter_event_created_at_alter_item_created_at'),
|
|
('tickets', '0009_issuethread_event'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ItemRelation',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('timestamp', models.DateTimeField(auto_now_add=True)),
|
|
('status', models.CharField(choices=[('possible', 'Possible'), ('confirmed', 'Confirmed'), ('discarded', 'Discarded'), ('provided', 'Provided')], default='possible', max_length=255)),
|
|
('issue_thread', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='item_relations', to='tickets.issuethread')),
|
|
('item', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='issues', to='inventory.item')),
|
|
],
|
|
),
|
|
]
|