mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
24 lines
426 B
Go
24 lines
426 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigrationContext(Up20201021135455, Down20201021135455)
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func Down20201021135455(_ context.Context, tx *sql.Tx) error {
|
|
return nil
|
|
}
|