Changes on customers & compliance_authorization tables
This commit is contained in:
parent
fd31bbb89f
commit
143ce8a98c
2 changed files with 26 additions and 26 deletions
|
|
@ -2,13 +2,13 @@ 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) )' ]
|
||||
[`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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue