Migration sql changes (#199)
* safe migration script changes * lamassu migration script fixes
This commit is contained in:
parent
65ce8aee3d
commit
12c834469c
53 changed files with 500 additions and 346 deletions
|
|
@ -2,10 +2,10 @@ var db = require('./db')
|
|||
|
||||
exports.up = function (next) {
|
||||
var sql = [
|
||||
'alter table cash_out_txs add column provisioned_1 integer',
|
||||
'alter table cash_out_txs add column provisioned_2 integer',
|
||||
'alter table cash_out_txs add column denomination_1 integer',
|
||||
'alter table cash_out_txs add column denomination_2 integer'
|
||||
db.addColumn('cash_out_txs', 'provisioned_1', 'integer'),
|
||||
db.addColumn('cash_out_txs', 'provisioned_2', 'integer'),
|
||||
db.addColumn('cash_out_txs', 'denomination_1', 'integer'),
|
||||
db.addColumn('cash_out_txs', 'denomination_2', 'integer')
|
||||
]
|
||||
db.multi(sql, next)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue