Skip to content

Commit a458374

Browse files
phixMephix
and
phix
authored
Adding indices on jobs table (#2161)
* Adding lineage indices. * Adding another index. * Bumping migration name. Co-authored-by: phix <peter.hicks@astronomer.io>
1 parent 5265c92 commit a458374

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* SPDX-License-Identifier: Apache-2.0 */
2+
3+
create index jobs_current_version_uuid_index
4+
on jobs (current_version_uuid);
5+
6+
create index jobs_symlink_target_uuid_index
7+
on jobs (symlink_target_uuid);
8+
9+
create index jobs_current_job_context_uuid_index
10+
on jobs (current_job_context_uuid);

0 commit comments

Comments
 (0)