UNPKG

origintrail-node

Version:

OriginTrail Node - Decentralized Knowledge Graph Node Library

10 lines (8 loc) 306 B
export async function up({ context: { queryInterface, Sequelize } }) { await queryInterface.addColumn('event', 'blockchain_id', { type: Sequelize.STRING, }); } export async function down({ context: { queryInterface } }) { await queryInterface.removeColumn('event', 'blockchain_id'); }