quintodrome/db/migrations/20200326090707_fix_album_artists_importing.go

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

22 lines
390 B
Go
Raw Normal View History

package migrations
import (
2023-11-27 10:46:44 -09:00
"context"
"database/sql"
2020-04-26 08:53:36 -08:00
2023-04-04 05:57:00 -08:00
"github.com/pressly/goose/v3"
)
func init() {
2023-11-27 10:46:44 -09:00
goose.AddMigrationContext(Up20200326090707, Down20200326090707)
}
2023-11-27 10:46:44 -09:00
func Up20200326090707(_ context.Context, tx *sql.Tx) error {
notice(tx, "A full rescan will be performed!")
return forceFullRescan(tx)
}
2023-11-27 10:46:44 -09:00
func Down20200326090707(_ context.Context, tx *sql.Tx) error {
return nil
}