mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
27 lines
419 B
Go
27 lines
419 B
Go
package migrations
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigration(upAddPlaylistPath, downAddPlaylistPath)
|
|
}
|
|
|
|
func upAddPlaylistPath(tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
alter table playlist
|
|
add path string default '' not null;
|
|
|
|
alter table playlist
|
|
add sync bool default false not null;
|
|
`)
|
|
|
|
return err
|
|
}
|
|
|
|
func downAddPlaylistPath(tx *sql.Tx) error {
|
|
return nil
|
|
}
|