rename cartridge to cassette

This commit is contained in:
Josh Harvey 2017-04-24 01:20:00 +03:00
parent cc32bc39e8
commit 8674816d27
9 changed files with 67 additions and 66 deletions

View file

@ -4,12 +4,11 @@ exports.up = function (next) {
var sql = [
`create table cash_in_actions (
id serial primary key,
tx_id uuid references cash_in_txs not null,
tx_id uuid not null,
action text not null,
error text,
error_code text,
tx_hash text,
success boolean not null,
created timestamptz not null default now()
)`
]