mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
24 lines
420 B
Go
24 lines
420 B
Go
package migrations
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
|
|
"github.com/pressly/goose/v3"
|
|
)
|
|
|
|
func init() {
|
|
goose.AddMigrationContext(Up20201128100726, Down20201128100726)
|
|
}
|
|
|
|
func Up20201128100726(_ context.Context, tx *sql.Tx) error {
|
|
_, err := tx.Exec(`
|
|
alter table player
|
|
add report_real_path bool default FALSE not null;
|
|
`)
|
|
return err
|
|
}
|
|
|
|
func Down20201128100726(_ context.Context, tx *sql.Tx) error {
|
|
return nil
|
|
}
|