* dev: (85 commits) chore: console.log debug leftovers fix: third level navigation links fix: show subheader on refresh fix: machines/:id routing fix: customer route chore: update wallet nodes feat: shorten long addresses in funding page feat: shorten long addresses refactor: support copied text different from presented text chore: udpate react, downshift and routing refactor: use Wizard component on first route fix: autocomplete component rendering feat: skip2fa option on .env fix: drop contraint before dropping index chore: stop using alias imports fix: re-instate urlResolver chore: server code formatting chore: reformat code chore: adding eslint and prettier config chore: typo ...
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
var db = require('./db')
|
|
var smsNotices = require('../lib/sms-notices')
|
|
|
|
exports.up = function (next) {
|
|
var sql = [
|
|
`ALTER TABLE custom_messages RENAME TO sms_notices`,
|
|
`ALTER TYPE custom_message_event RENAME TO sms_notice_event`,
|
|
`ALTER TYPE sms_notice_event ADD VALUE 'sms_receipt'`,
|
|
`ALTER TABLE sms_notices ADD COLUMN message_name TEXT UNIQUE NOT NULL`,
|
|
`ALTER TABLE sms_notices ADD COLUMN enabled BOOLEAN NOT NULL DEFAULT true`,
|
|
`ALTER TABLE sms_notices ADD COLUMN allow_toggle BOOLEAN NOT NULL DEFAULT true`,
|
|
]
|
|
|
|
db.multi(sql, () =>
|
|
Promise.all([
|
|
smsNotices.createSMSNotice(
|
|
'sms_code',
|
|
'SMS confirmation code',
|
|
'Your cryptomat code: #code',
|
|
true,
|
|
false,
|
|
),
|
|
smsNotices.createSMSNotice(
|
|
'cash_out_dispense_ready',
|
|
'Cash is ready',
|
|
'Your cash is waiting! Go to the Cryptomat and press Redeem within 24 hours. [#timestamp]',
|
|
true,
|
|
false,
|
|
),
|
|
smsNotices.createSMSNotice('sms_receipt', 'SMS receipt', '', true, true),
|
|
]).then(() => next()),
|
|
)
|
|
}
|
|
|
|
exports.down = function (next) {
|
|
next()
|
|
}
|