mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Fix condition for deleting custom field value
This commit is contained in:
parent
4059ef31c1
commit
af1cca7d83
@ -161,6 +161,7 @@ object OCustomFields {
|
||||
val update =
|
||||
for {
|
||||
field <- OptionT(RCustomField.findByIdOrName(in.field, in.collective))
|
||||
_ <- OptionT.liftF(logger.debug(s"Field found by '${in.field}': $field"))
|
||||
n <- OptionT.liftF(RCustomFieldValue.deleteValue(field.id, in.item))
|
||||
} yield n
|
||||
|
||||
|
@ -60,5 +60,8 @@ object RCustomFieldValue {
|
||||
deleteFrom(table, Columns.itemId.is(item)).update.run
|
||||
|
||||
def deleteValue(fieldId: Ident, items: NonEmptyList[Ident]): ConnectionIO[Int] =
|
||||
deleteFrom(table, and(Columns.id.is(fieldId), Columns.itemId.isIn(items))).update.run
|
||||
deleteFrom(
|
||||
table,
|
||||
and(Columns.field.is(fieldId), Columns.itemId.isIn(items))
|
||||
).update.run
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user