mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
26 lines
482 B
Go
26 lines
482 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigration(upAddAlbumImagePaths, downAddAlbumImagePaths)
|
|
}
|
|
|
|
func upAddAlbumImagePaths(tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
alter table main.album add image_files varchar;
|
|
`)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
notice(tx, "A full rescan needs to be performed to import all album images")
|
|
return forceFullRescan(tx)
|
|
}
|
|
|
|
func downAddAlbumImagePaths(tx *sql.Tx) error {
|
|
return nil
|
|
}
|