(where: any)
| 81 | const idColumn = options.idColumn as string |
| 82 | const softDeleteColumn = options.softDeleteColumn as string | undefined |
| 83 | const withSoftDeleteFilter = (where: any) => |
| 84 | softDeleteColumn === undefined ? where : sql.and([where, sql`${sql(softDeleteColumn)} is null`]) |
| 85 | const setSoftDeleted = softDeleteColumn === undefined |
| 86 | ? undefined |
| 87 | : sql`${sql(softDeleteColumn)} = CURRENT_TIMESTAMP` |
no test coverage detected