-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #218 from KerkhoffTechnologies/3503-add-auto-rank
update related names on some models
- Loading branch information
Showing
4 changed files
with
55 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
djautotask/migrations/0116_alter_servicecall_tasks_alter_servicecall_tickets.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.11 on 2024-06-17 10:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djautotask', '0115_task_task_type'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='servicecall', | ||
name='tasks', | ||
field=models.ManyToManyField(through='djautotask.ServiceCallTask', to='djautotask.task'), | ||
), | ||
migrations.AlterField( | ||
model_name='servicecall', | ||
name='tickets', | ||
field=models.ManyToManyField(through='djautotask.ServiceCallTicket', to='djautotask.ticket'), | ||
), | ||
] |
24 changes: 24 additions & 0 deletions
24
djautotask/migrations/0117_alter_tasknote_task_alter_ticketnote_ticket.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.11 on 2024-06-17 11:37 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djautotask', '0116_alter_servicecall_tasks_alter_servicecall_tickets'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='tasknote', | ||
name='task', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='notes', to='djautotask.task'), | ||
), | ||
migrations.AlterField( | ||
model_name='ticketnote', | ||
name='ticket', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='notes', to='djautotask.ticket'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters