mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
"Touch" playlists to force some clients to reload cover art
This commit is contained in:
parent
12dd219e16
commit
d3e4a5287d
1 changed files with 20 additions and 0 deletions
20
db/migration/20230114121537_touch_playlists.go
Normal file
20
db/migration/20230114121537_touch_playlists.go
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
package migrations
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql"
|
||||||
|
|
||||||
|
"github.com/pressly/goose"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
goose.AddMigration(upTouchPlaylists, downTouchPlaylists)
|
||||||
|
}
|
||||||
|
|
||||||
|
func upTouchPlaylists(tx *sql.Tx) error {
|
||||||
|
_, err := tx.Exec(`update playlist set updated_at = datetime('now');`)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func downTouchPlaylists(tx *sql.Tx) error {
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue