Remove CoverArtID, fix tests

This commit is contained in:
Deluan 2022-12-19 14:11:43 -05:00 committed by Deluan Quintão
parent 38bde0ddba
commit c36e77d41f
6 changed files with 35 additions and 126 deletions

View file

@ -0,0 +1,27 @@
package migrations
import (
"database/sql"
"github.com/pressly/goose"
)
func init() {
goose.AddMigration(upRemoveCoverArtId, downRemoveCoverArtId)
}
func upRemoveCoverArtId(tx *sql.Tx) error {
_, err := tx.Exec(`
alter table album drop column cover_art_id;
alter table album rename column cover_art_path to embed_art_path
`)
if err != nil {
return err
}
notice(tx, "A full rescan needs to be performed to import all album images")
return forceFullRescan(tx)
}
func downRemoveCoverArtId(tx *sql.Tx) error {
return nil
}