mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
28 lines
584 B
Go
28 lines
584 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigrationContext(Up20201021093209, Down20201021093209)
|
|
}
|
|
|
|
func Up20201021093209(_ context.Context, tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
create index if not exists media_file_artist
|
|
on media_file (artist);
|
|
create index if not exists media_file_album_artist
|
|
on media_file (album_artist);
|
|
create index if not exists media_file_mbz_track_id
|
|
on media_file (mbz_track_id);
|
|
`)
|
|
return err
|
|
}
|
|
|
|
func Down20201021093209(_ context.Context, tx *sql.Tx) error {
|
|
return nil
|
|
}
|