lamassu-server/migrations/037-add_compliance_authorizations_table.js
Rafael Taranto 06f8c57608 Save migrations file on db (#215)
* Revert "Migration sql changes (#199)"

This reverts commit 12c834469c.

* Save migrate file on db

* Add message on migration error in lamassu-update
2018-11-18 10:15:22 +01:00

18 lines
501 B
JavaScript

var db = require('./db')
exports.up = function (next) {
const sql =
[ "create type compliance_types as enum ('manual', 'sanctions', 'sanctions_override')",
`create table compliance_authorizations (
id uuid PRIMARY KEY,
customer_id uuid REFERENCES customers (id),
compliance_type compliance_types NOT NULL,
authorized_at timestamptz NOT NULL,
authorized_by text REFERENCES user_tokens (token) )` ]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}