- // SPDX-License-Identifier: MIT
- pragma solidity >=0.4.22 <0.9.0;
- import "@openzeppelin/contracts/access/Ownable.sol";
- // Needed for truffle migrate to work correctly.
- // Simply stores the last completed migration.
- contract Migrations is Ownable {
- uint public last_completed_migration;
- function setCompleted(uint completed) public onlyOwner {
- last_completed_migration = completed;
- }
- }
|