mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
20 lines
339 B
Go
20 lines
339 B
Go
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
|
|
}
|