2021-05-27 07:01:49 -07:00
|
|
|
var Migrations = artifacts.require("Migrations");
|
2020-08-06 14:32:31 -07:00
|
|
|
|
2021-05-27 07:01:49 -07:00
|
|
|
module.exports = function(deployer) {
|
|
|
|
// Deploy the Migrations contract as our only task
|
|
|
|
deployer.deploy(Migrations);
|
|
|
|
};
|