Skip to content

Commit 7ac814c

Browse files
committed
fix: add missing migrations
1 parent e32a87d commit 7ac814c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.2.3 on 2025-06-24 08:09
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('submission_queue', '0004_remove_queue_name_index'),
10+
]
11+
12+
operations = [
13+
migrations.RenameIndex(
14+
model_name='submission',
15+
new_name='queue_submi_queue_n_4c6cd5_idx',
16+
old_fields=('queue_name', 'retired', 'push_time', 'arrival_time'),
17+
),
18+
migrations.RenameIndex(
19+
model_name='submission',
20+
new_name='queue_submi_queue_n_9fcfbd_idx',
21+
old_fields=('queue_name', 'retired', 'pull_time', 'arrival_time'),
22+
),
23+
migrations.RenameIndex(
24+
model_name='submission',
25+
new_name='queue_submi_lms_cal_367510_idx',
26+
old_fields=('lms_callback_url', 'retired'),
27+
),
28+
]

0 commit comments

Comments
 (0)