mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
Enable SQL migrations
This commit is contained in:
parent
7847f19c9d
commit
c3cc7dee01
6 changed files with 23 additions and 8 deletions
9
Makefile
9
Makefile
|
@ -52,8 +52,13 @@ snapshots: ##@Development Update (GoLang) Snapshot tests
|
||||||
UPDATE_SNAPSHOTS=true go run github.com/onsi/ginkgo/v2/ginkgo@latest ./server/subsonic/...
|
UPDATE_SNAPSHOTS=true go run github.com/onsi/ginkgo/v2/ginkgo@latest ./server/subsonic/...
|
||||||
.PHONY: snapshots
|
.PHONY: snapshots
|
||||||
|
|
||||||
migration: ##@Development Create an empty migration file
|
migration-sql: ##@Development Create an empty SQL migration file
|
||||||
@if [ -z "${name}" ]; then echo "Usage: make migration name=name_of_migration_file"; exit 1; fi
|
@if [ -z "${name}" ]; then echo "Usage: make migration-sql name=name_of_migration_file"; exit 1; fi
|
||||||
|
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migration create ${name} sql
|
||||||
|
.PHONY: migration
|
||||||
|
|
||||||
|
migration-go: ##@Development Create an empty Go migration file
|
||||||
|
@if [ -z "${name}" ]; then echo "Usage: make migration-go name=name_of_migration_file"; exit 1; fi
|
||||||
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migration create ${name}
|
go run github.com/pressly/goose/v3/cmd/goose@latest -dir db/migration create ${name}
|
||||||
.PHONY: migration
|
.PHONY: migration
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ func preRun() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func runNavidrome() {
|
func runNavidrome() {
|
||||||
db.EnsureLatestVersion()
|
db.Init()
|
||||||
defer func() {
|
defer func() {
|
||||||
if err := db.Close(); err != nil {
|
if err := db.Close(); err != nil {
|
||||||
log.Error("Error closing DB", err)
|
log.Error("Error closing DB", err)
|
||||||
|
|
13
db/db.go
13
db/db.go
|
@ -2,6 +2,7 @@ package db
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
|
"embed"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
_ "github.com/mattn/go-sqlite3"
|
_ "github.com/mattn/go-sqlite3"
|
||||||
|
@ -17,6 +18,11 @@ var (
|
||||||
Path string
|
Path string
|
||||||
)
|
)
|
||||||
|
|
||||||
|
//go:embed migration/*.sql
|
||||||
|
var embedMigrations embed.FS
|
||||||
|
|
||||||
|
const migrationsFolder = "migration"
|
||||||
|
|
||||||
func Db() *sql.DB {
|
func Db() *sql.DB {
|
||||||
return singleton.GetInstance(func() *sql.DB {
|
return singleton.GetInstance(func() *sql.DB {
|
||||||
Path = conf.Server.DbPath
|
Path = conf.Server.DbPath
|
||||||
|
@ -38,7 +44,7 @@ func Close() error {
|
||||||
return Db().Close()
|
return Db().Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
func EnsureLatestVersion() {
|
func Init() {
|
||||||
db := Db()
|
db := Db()
|
||||||
|
|
||||||
// Disable foreign_keys to allow re-creating tables in migrations
|
// Disable foreign_keys to allow re-creating tables in migrations
|
||||||
|
@ -55,18 +61,19 @@ func EnsureLatestVersion() {
|
||||||
|
|
||||||
gooseLogger := &logAdapter{silent: isSchemaEmpty(db)}
|
gooseLogger := &logAdapter{silent: isSchemaEmpty(db)}
|
||||||
goose.SetLogger(gooseLogger)
|
goose.SetLogger(gooseLogger)
|
||||||
|
goose.SetBaseFS(embedMigrations)
|
||||||
|
|
||||||
err = goose.SetDialect(Driver)
|
err = goose.SetDialect(Driver)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Invalid DB driver", "driver", Driver, err)
|
log.Fatal("Invalid DB driver", "driver", Driver, err)
|
||||||
}
|
}
|
||||||
err = goose.Run("up", db, "./")
|
err = goose.Up(db, migrationsFolder)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Failed to apply new migrations", err)
|
log.Fatal("Failed to apply new migrations", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func isSchemaEmpty(db *sql.DB) bool { // nolint:interfacer
|
func isSchemaEmpty(db *sql.DB) bool {
|
||||||
rows, err := db.Query("SELECT name FROM sqlite_master WHERE type='table' AND name='goose_db_version';") // nolint:rowserrcheck
|
rows, err := db.Query("SELECT name FROM sqlite_master WHERE type='table' AND name='goose_db_version';") // nolint:rowserrcheck
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal("Database could not be opened!", err)
|
log.Fatal("Database could not be opened!", err)
|
||||||
|
|
3
db/migration/placeholder.sql
Normal file
3
db/migration/placeholder.sql
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-- This can be removed once we have at least one SQL migration.
|
||||||
|
-- It is here to avoid an error in the linter:
|
||||||
|
-- db/db.go:23:4: invalid go:embed: build system did not supply embed configuration (typecheck)
|
|
@ -24,7 +24,7 @@ func TestPersistence(t *testing.T) {
|
||||||
//conf.Server.DbPath = "./test-123.db"
|
//conf.Server.DbPath = "./test-123.db"
|
||||||
conf.Server.DbPath = "file::memory:?cache=shared"
|
conf.Server.DbPath = "file::memory:?cache=shared"
|
||||||
_ = orm.RegisterDataBase("default", db.Driver, conf.Server.DbPath)
|
_ = orm.RegisterDataBase("default", db.Driver, conf.Server.DbPath)
|
||||||
db.EnsureLatestVersion()
|
db.Init()
|
||||||
log.SetLevel(log.LevelError)
|
log.SetLevel(log.LevelError)
|
||||||
RegisterFailHandler(Fail)
|
RegisterFailHandler(Fail)
|
||||||
RunSpecs(t, "Persistence Suite")
|
RunSpecs(t, "Persistence Suite")
|
||||||
|
|
|
@ -16,7 +16,7 @@ func TestScanner(t *testing.T) {
|
||||||
tests.Init(t, true)
|
tests.Init(t, true)
|
||||||
conf.Server.DbPath = "file::memory:?cache=shared"
|
conf.Server.DbPath = "file::memory:?cache=shared"
|
||||||
_ = orm.RegisterDataBase("default", db.Driver, conf.Server.DbPath)
|
_ = orm.RegisterDataBase("default", db.Driver, conf.Server.DbPath)
|
||||||
db.EnsureLatestVersion()
|
db.Init()
|
||||||
log.SetLevel(log.LevelFatal)
|
log.SetLevel(log.LevelFatal)
|
||||||
RegisterFailHandler(Fail)
|
RegisterFailHandler(Fail)
|
||||||
RunSpecs(t, "Scanner Suite")
|
RunSpecs(t, "Scanner Suite")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue