Rename wrong migration file index

This commit is contained in:
goga-m 2017-08-14 17:17:28 +03:00
parent ecdef92f82
commit fd31bbb89f

View file

@ -0,0 +1,19 @@
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();
};