mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
22 lines
423 B
Go
22 lines
423 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigration(upRemoveInvalidArtistIds, downRemoveInvalidArtistIds)
|
|
}
|
|
|
|
func upRemoveInvalidArtistIds(tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
update media_file set artist_id = '' where not exists(select 1 from artist where id = artist_id)
|
|
`)
|
|
return err
|
|
}
|
|
|
|
func downRemoveInvalidArtistIds(tx *sql.Tx) error {
|
|
return nil
|
|
}
|