Files
EagleCast/internal/migrations/v4.1.0.go
T
h202-wq 66d9a033c9
publish-github-pages / deploy (push) Has been cancelled
EagleCast
2026-07-09 10:03:32 -04:00

22 lines
485 B
Go

package migrations
import (
"log"
"github.com/jmoiron/sqlx"
"github.com/knadh/koanf/v2"
"github.com/knadh/stuffbin"
)
// V4_1_0 performs the DB migrations.
func V4_1_0(db *sqlx.DB, fs stuffbin.FileSystem, ko *koanf.Koanf, lo *log.Logger) error {
// Insert new preference settings.
if _, err := db.Exec(`
INSERT INTO settings (key, value) VALUES('bounce.forwardemail', '{"enabled": false, "key": ""}') ON CONFLICT DO NOTHING;
`); err != nil {
return err
}
return nil
}