You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
510 B
Python

# Generated by Django 5.0.4 on 2024-05-23 08:56
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('customercore', '0020_alter_ticketattachment_file'),
]
operations = [
migrations.AddField(
model_name='file',
name='ticket',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='customercore.ticket'),
),
]