8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
require('dotenv').config()
|
|
|
|
var Migrations = artifacts.require('./Migrations.sol')
|
|
|
|
module.exports = function (deployer) {
|
|
deployer.deploy(Migrations)
|
|
}
|