-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4057a3a
commit 990d4a1
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...ticket/migrations/0023_remove_ticketassignment_uni_ticket__office__f42ab9_idx_and_more.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,28 @@ | ||
# Generated by Django 4.2.16 on 2024-11-14 09:35 | ||
|
||
from django.db import migrations, models | ||
import uuid | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('uni_ticket', '0022_alter_ticket_is_closed'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveIndex( | ||
model_name='ticketassignment', | ||
name='uni_ticket__office__f42ab9_idx', | ||
), | ||
migrations.AlterField( | ||
model_name='ticket', | ||
name='assigned_date', | ||
field=models.DateTimeField(blank=True, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='ticket', | ||
name='code', | ||
field=models.CharField(default=uuid.uuid4, max_length=255, unique=True), | ||
), | ||
] |
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