quintodrome/db/migration/20200326090707_fix_album_artists_importing.go

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

21 lines
334 B
Go
Raw Normal View History

package migrations
import (
"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() {
goose.AddMigration(Up20200326090707, Down20200326090707)
}
func Up20200326090707(tx *sql.Tx) error {
notice(tx, "A full rescan will be performed!")
return forceFullRescan(tx)
}
func Down20200326090707(tx *sql.Tx) error {
return nil
}