Skip to content

Commit

Permalink
Fix VF index creations.
Browse files Browse the repository at this point in the history
  • Loading branch information
njohner committed Feb 13, 2024
1 parent 73ff28f commit 5bb28b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/lib/db_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def create_vf_tables(self):
)
self.server.adaptor.execute(query,)
query = (
"CREATE INDEX sphi ON vf_hits(hsh);"
"CREATE INDEX vfhi ON vf_hits(hsh);"
)
self.server.adaptor.execute(query,)
query = (
Expand All @@ -321,7 +321,7 @@ def create_vf_tables(self):
)
self.server.adaptor.execute(query,)
query = (
"CREATE INDEX spdi ON vf_defs(prot_id);"
"CREATE INDEX vfdi ON vf_defs(prot_id);"
)
self.server.adaptor.execute(query,)

Expand Down

0 comments on commit 5bb28b9

Please sign in to comment.