navidrome/db/migrations/20201021135455_add_media_fi...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
426 B
Go
Raw Normal View History

package migrations
import (
2023-11-27 20:46:44 +01:00
"context"
"database/sql"
2023-04-04 15:57:00 +02:00
"github.com/pressly/goose/v3"
)
func init() {
2023-11-27 20:46:44 +01:00
goose.AddMigrationContext(Up20201021135455, Down20201021135455)
}
2023-11-27 20:46:44 +01:00
func Up20201021135455(_ context.Context, tx *sql.Tx) error {
_, err := tx.Exec(`
create index if not exists media_file_artist_id
on media_file (artist_id);
`)
return err
}
2023-11-27 20:46:44 +01:00
func Down20201021135455(_ context.Context, tx *sql.Tx) error {
return nil
}