2020-12-19 11:55:52 +01:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
2021-01-24 08:19:52 +01:00
|
|
|
"fmt"
|
|
|
|
|
2020-12-19 11:55:52 +01:00
|
|
|
"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 {
|
2021-01-24 08:19:52 +01:00
|
|
|
if _, err := db.Exec(`
|
2021-01-30 10:29:21 +01:00
|
|
|
INSERT INTO settings (key, value) VALUES
|
|
|
|
('app.lang', '"en"'),
|
|
|
|
('app.message_sliding_window', 'false'),
|
|
|
|
('app.message_sliding_window_duration', '"1h"'),
|
2021-01-31 11:49:39 +01:00
|
|
|
('app.message_sliding_window_rate', '10000'),
|
|
|
|
('app.enable_public_subscription_page', 'true')
|
2021-01-30 10:29:21 +01:00
|
|
|
ON CONFLICT DO NOTHING;
|
|
|
|
|
|
|
|
-- Add alternate (plain text) body field on campaigns.
|
|
|
|
ALTER TABLE campaigns ADD COLUMN IF NOT EXISTS altbody TEXT NULL DEFAULT NULL;
|
2021-01-24 08:19:52 +01:00
|
|
|
`); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Until this version, the default template during installation was broken!
|
|
|
|
// Check if there's a broken default template and if yes, override it with the
|
|
|
|
// actual one.
|
|
|
|
tplBody, err := fs.Get("/static/email-templates/default.tpl")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error reading default e-mail template: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := db.Exec(`UPDATE templates SET body=$1 WHERE body=$2`,
|
|
|
|
tplBody.ReadBytes(), `{{ template "content" . }}`); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2020-12-19 11:55:52 +01:00
|
|
|
}
|