const Migrations = artifacts.require("Migrations"); const ExampleContract = artifacts.require("ExampleContract"); module.exports = function(deployer) { deployer.deploy(Migrations); deployer.deploy(ExampleContract); };