machinomy
Version:
Micropayments powered by Ethereum
13 lines • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function up(db, callback) {
return db.addColumn('payment', 'createdAt', {
type: 'bigint'
}, callback);
}
exports.up = up;
function down(db, callback) {
return db.removeColumn('payment', 'createdAt', callback);
}
exports.down = down;
//# sourceMappingURL=20180325060555-add-created-at.js.map