2020-12-19 11:55:52 +01:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
|
|
"github.com/knadh/koanf"
|
|
|
|
"github.com/knadh/stuffbin"
|
|
|
|
)
|
|
|
|
|
|
|
|
// V0_9_0 performs the DB migrations for v.0.9.0.
|
|
|
|
func V0_9_0(db *sqlx.DB, fs stuffbin.FileSystem, ko *koanf.Koanf) error {
|
|
|
|
_, err := db.Exec(`
|
2021-01-24 07:49:26 +01:00
|
|
|
INSERT INTO settings (key, value) VALUES
|
|
|
|
('app.lang', '"en"'),
|
|
|
|
('app.message_sliding_window', 'false'),
|
|
|
|
('app.message_sliding_window_duration', '"1h"'),
|
|
|
|
('app.message_sliding_window_rate', '10000')
|
2020-12-19 11:55:52 +01:00
|
|
|
ON CONFLICT DO NOTHING;
|
|
|
|
`)
|
|
|
|
return err
|
|
|
|
}
|