tornado-core/migrations/1_initial_migration.js

10 lines
199 B
JavaScript
Raw Normal View History

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