6 lines
129 B
JavaScript
6 lines
129 B
JavaScript
|
var Migrations = artifacts.require("./Migrations.sol");
|
||
|
|
||
|
module.exports = function(deployer) {
|
||
|
deployer.deploy(Migrations);
|
||
|
};
|