first push
This commit is contained in:
20
ticket/migrations/0007_ticketsupport_to_user.py
Normal file
20
ticket/migrations/0007_ticketsupport_to_user.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# Generated by Django 3.2.13 on 2024-08-30 10:34
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('authentication', '0045_auto_20240830_1034'),
|
||||
('ticket', '0006_auto_20240615_1418'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ticketsupport',
|
||||
name='to_user',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='to_user_ticket', to='authentication.systemuserprofile'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user