Skip to content

Commit 6f16e49

Browse files
Chen2xCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 812c9da commit 6f16e49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/migrations/20251218018_create_pmc_affiliations_table.up.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ CREATE TABLE IF NOT EXISTS pmc_affiliations (
2222
ON DELETE CASCADE
2323
);
2424

25-
CREATE INDEX IF NOT EXISTS idx_affiliations_author_id ON affiliations(author_id);
26-
CREATE INDEX IF NOT EXISTS idx_affiliations_article_id ON affiliations(article_id);
27-
CREATE INDEX IF NOT EXISTS idx_affiliations_org ON affiliations(org_name);
25+
CREATE INDEX IF NOT EXISTS idx_affiliations_author_id ON pmc_affiliations(author_id);
26+
CREATE INDEX IF NOT EXISTS idx_affiliations_article_id ON pmc_affiliations(article_id);
27+
CREATE INDEX IF NOT EXISTS idx_affiliations_org ON pmc_affiliations(org_name);

0 commit comments

Comments
 (0)