tornado-core/migrations/1_initial_migration.js

10 lines
199 B
JavaScript
Raw Normal View History

2019-07-16 22:49:45 +02:00
/* global artifacts */
2019-07-16 19:27:20 +02:00
const Migrations = artifacts.require('Migrations')
2019-07-09 15:05:30 +02:00
module.exports = function(deployer) {
2019-08-02 02:19:52 +02:00
if(deployer.network === 'mainnet') {
return
}
2019-07-16 19:27:20 +02:00
deployer.deploy(Migrations)
}