Skip to content

Commit

Permalink
coa-updater: Add index on inducks_issue.short_issuecode
Browse files Browse the repository at this point in the history
  • Loading branch information
bperel committed Jul 9, 2024
1 parent 24071f3 commit 8678ff8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/coa-updater/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ ${cleanSql}
ALTER TABLE inducks_entryurl ADD id INT AUTO_INCREMENT NOT NULL, ADD PRIMARY KEY (id);
# Add full text index on entry titles
ALTER TABLE inducks_entry ADD FULLTEXT INDEX entryTitleFullText(title);
ALTER TABLE inducks_entry ADD FULLTEXT INDEX entryTitleFullText(title);
create index inducks_issue_short_issuecode_index
on inducks_issue (short_issuecode);
set unique_checks = 1;
set foreign_key_checks = 1;
Expand Down

0 comments on commit 8678ff8

Please sign in to comment.