navidrome/db/migration/20201128100726_add_real-pat...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
420 B
Go
Raw Normal View History

package migrations
import (
2023-11-27 20:46:44 +01:00
"context"
"database/sql"
2023-04-04 15:57:00 +02:00
"github.com/pressly/goose/v3"
)
func init() {
2023-11-27 20:46:44 +01:00
goose.AddMigrationContext(Up20201128100726, Down20201128100726)
}
2023-11-27 20:46:44 +01:00
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
}
2023-11-27 20:46:44 +01:00
func Down20201128100726(_ context.Context, tx *sql.Tx) error {
return nil
}