Skip to content

Commit

Permalink
Add v4.1.0 migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Nov 11, 2024
1 parent abe09d6 commit 18edc65
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions internal/migrations/v4.1.0.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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
}

0 comments on commit 18edc65

Please sign in to comment.