2023-01-24 00:20:10 +08:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
2024-01-12 00:53:39 +08:00
|
|
|
"log"
|
|
|
|
|
2023-01-24 00:20:10 +08:00
|
|
|
"github.com/jmoiron/sqlx"
|
2023-04-10 15:15:25 +08:00
|
|
|
"github.com/knadh/koanf/v2"
|
2023-01-24 00:20:10 +08:00
|
|
|
"github.com/knadh/stuffbin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// V2_4_0 performs the DB migrations.
|
2024-01-12 00:53:39 +08:00
|
|
|
func V2_4_0(db *sqlx.DB, fs stuffbin.FileSystem, ko *koanf.Koanf, lo *log.Logger) error {
|
2023-01-24 00:20:10 +08:00
|
|
|
// Insert new preference settings.
|
|
|
|
if _, err := db.Exec(`
|
|
|
|
INSERT INTO settings (key, value) VALUES
|
|
|
|
('security.enable_captcha', 'false'),
|
|
|
|
('security.captcha_key', '""'),
|
|
|
|
('security.captcha_secret', '""')
|
|
|
|
ON CONFLICT DO NOTHING;
|
|
|
|
`); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|