We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 812c9da commit 6f16e49Copy full SHA for 6f16e49
sql/migrations/20251218018_create_pmc_affiliations_table.up.sql
@@ -22,6 +22,6 @@ CREATE TABLE IF NOT EXISTS pmc_affiliations (
22
ON DELETE CASCADE
23
);
24
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);
+CREATE INDEX IF NOT EXISTS idx_affiliations_author_id ON pmc_affiliations(author_id);
+CREATE INDEX IF NOT EXISTS idx_affiliations_article_id ON pmc_affiliations(article_id);
+CREATE INDEX IF NOT EXISTS idx_affiliations_org ON pmc_affiliations(org_name);
0 commit comments