Hello Deacon.
It is very likely you need to run the following SQL for the restored DB
EXEC sp_change_users_login 'Update_One', 'innovator', 'innovator'
Explanation:
The backup of the DB you restored was created on another database server instance. Thus SQL Server login innovator had some id associated with that. Let's say that was 123. In your new SQL Server instance SQL Server login innovator has some different id. Let's say it is 456. And even login names are the same restored DB cannot function properly without additional work. Thus :
1) Ensure you have login innovator defined in your newly installed SQL Server.
2) Run sql EXEC sp_change_users_login 'Update_One', 'innovator', 'innovator' to associate SQL Server login innovator with restored DB user innovator.
Let us know if this helped you.
Thank you.