diff --git a/persistent/Database/Persist/Sql/Types.hs b/persistent/Database/Persist/Sql/Types.hs index f2fe2e18d..b221022bb 100644 --- a/persistent/Database/Persist/Sql/Types.hs +++ b/persistent/Database/Persist/Sql/Types.hs @@ -36,10 +36,13 @@ data Column = Column -- @since 2.11.0.0 data ColumnReference = ColumnReference { crTableName :: !EntityNameDB - -- ^ The table name that the + -- ^ The foreign table's name. -- -- @since 2.11.0.0 , crSchemaName :: !(Maybe SchemaNameDB) + -- ^ The name of the schema that the foreign table belongs to. + -- + -- @since 2.14.7 , crConstraintName :: !ConstraintNameDB -- ^ The name of the foreign key constraint. --