Merge pull request #813 from chaotixkilla/feat-custom-sms

Custom SMS
This commit is contained in:
Rafael Taranto 2021-11-24 17:42:27 +00:00 committed by GitHub
commit e57bccf750
14 changed files with 565 additions and 24 deletions

View file

@ -0,0 +1,19 @@
var db = require('./db')
exports.up = function (next) {
var sql = [
`CREATE TYPE custom_message_event AS ENUM('sms_code', 'cash_out_dispense_ready')`,
`CREATE TABLE custom_messages (
id UUID PRIMARY KEY,
event custom_message_event UNIQUE NOT NULL,
message TEXT NOT NULL,
created TIMESTAMPTZ NOT NULL DEFAULT now()
)`
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}