navidrome/db/migration/20230310222612_add_download...

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

25 lines
431 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(upAddDownloadToShare, downAddDownloadToShare)
}
2023-11-27 20:46:44 +01:00
func upAddDownloadToShare(_ context.Context, tx *sql.Tx) error {
_, err := tx.Exec(`
alter table share
add downloadable bool not null default false;
`)
return err
}
2023-11-27 20:46:44 +01:00
func downAddDownloadToShare(_ context.Context, tx *sql.Tx) error {
return nil
}