mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Create index to make sort by starred faster
This commit is contained in:
parent
bbd4503ac8
commit
47976e13b1
1 changed files with 23 additions and 0 deletions
23
db/migrations/20201003111749_add_starred_at_index.go
Normal file
23
db/migrations/20201003111749_add_starred_at_index.go
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
package migrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/pressly/goose"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
goose.AddMigration(Up20201003111749, Down20201003111749)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Up20201003111749(tx *sql.Tx) error {
|
||||||
|
_, err := tx.Exec(`
|
||||||
|
create index if not exists annotation_starred_at
|
||||||
|
on annotation (starred_at);
|
||||||
|
`)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func Down20201003111749(tx *sql.Tx) error {
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue