You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
( backend ~PersistEntityBackend record
, PersistEntity record
, PersistEntityBackend record ~SqlBackend
, MonadIO m
, PersistStore backend
, BackendCompatibleSqlBackend backend
, OnlyOneUniqueKey record
) =>
But as you might notice, it's saying BackendCompatible SqlBackend backend AND backend ~ SqlBackend (via a small detour using PersistEntityBackend record).
So it's basically just saying the backend HAS to be SqlBackend. I believe this should be able to be loosened (so we can use our own backend)
At first glance, I think the backend ~ PersistEntityBackend record is the only unnecessary constraint. 🤔
The text was updated successfully, but these errors were encountered:
The constraints for
upsertWhere
are as follows:But as you might notice, it's saying
BackendCompatible SqlBackend backend
ANDbackend ~ SqlBackend
(via a small detour usingPersistEntityBackend record
).So it's basically just saying the
backend
HAS to beSqlBackend
. I believe this should be able to be loosened (so we can use our own backend)At first glance, I think the
backend ~ PersistEntityBackend record
is the only unnecessary constraint. 🤔The text was updated successfully, but these errors were encountered: