Open
Description
From https://wizard.openzeppelin.com/#erc721, enable "Mintable -> Auto Increment Ids" and "Upgradeability". This adds state variable uint256 private _nextTokenId;
to the code, and this can be enhanced to use namespaced storage as a best practice for upgradeable contracts.
(This is currently the only state variable added by Wizard, but this should apply for any state variable(s) being added by Wizard when upgradeability is enabled.)