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
This commit is contained in:
parent
9af204e609
commit
06f8c57608
58 changed files with 1516 additions and 567 deletions
|
|
@ -2,8 +2,8 @@ var db = require('./db')
|
|||
|
||||
exports.up = function (next) {
|
||||
const sql = [
|
||||
db.addColumn('cash_out_txs', 'published_at', 'timestamptz'),
|
||||
db.renameColumn('cash_out_txs', 'confirmation_time', 'confirmed_at')
|
||||
'alter table cash_out_txs add column published_at timestamptz',
|
||||
'alter table cash_out_txs rename column confirmation_time to confirmed_at'
|
||||
]
|
||||
|
||||
db.multi(sql, next)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue