machinomy
Version:
Micropayments powered by Ethereum
15 lines • 429 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function up(db, callback) {
return db.addColumn('payment', 'id', {
type: 'int',
primaryKey: true,
autoIncrement: true
}, callback);
}
exports.up = up;
function down(db, callback) {
return db.removeColumn('payment', 'id', callback);
}
exports.down = down;
//# sourceMappingURL=20180813130152-add-id-to-payments.js.map