tornado-core/migrations/1_initial_migration.js

10 lines
199 B
JavaScript
Raw Normal View History

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