This QQ breaks with an error that `UserId` is not in scope. ```haskell share [ mkPersist sqlSettings ] [persistLowerCase| User name String Profile Id UserId email String |] ``` However, using `UserId` is *usually* fine in other contexts. So why isn't this working?
This QQ breaks with an error that
UserIdis not in scope.share [ mkPersist sqlSettings ] [persistLowerCase| User name String Profile Id UserId email String |]However, using
UserIdis usually fine in other contexts. So why isn't this working?