diff --git a/src/Data/Id.hs b/src/Data/Id.hs index 1ff8097..6085c5b 100644 --- a/src/Data/Id.hs +++ b/src/Data/Id.hs @@ -147,6 +147,9 @@ newtype IntId t = IntId { unIntId :: Integer } #ifdef USE_FLAT , Flat #endif +#ifdef USE_STORE + , Data.Store.Store +#endif #endif , FromJSON, ToJSON, NFData, Hashable, FromJSONKey, ToJSONKey, ToSchema , ToParamSchema, FromHttpApiData, ToHttpApiData, PathPiece, Arbitrary @@ -193,6 +196,9 @@ newtype Name t = Name { unName :: Text } #ifdef USE_FLAT , Flat #endif +#ifdef USE_STORE + , Data.Store.Store +#endif #endif , FromJSON, ToJSON, NFData, Hashable, FromJSONKey, ToJSONKey, ToSchema , ToParamSchema, FromHttpApiData, ToHttpApiData, PathPiece