origintrail-node
Version:
OriginTrail Node - Decentralized Knowledge Graph Node Library
11 lines (8 loc) • 311 B
JavaScript
const chiadoBlockchainId = 'gnosis:10200';
export async function up({ context: { queryInterface } }) {
await queryInterface.sequelize.query(`
delete from blockchain where blockchain_id='${chiadoBlockchainId}'
`);
}
// eslint-disable-next-line no-empty-function
export async function down() {}