[Developer] #424 stop guessing protected object ORDS paths

This commit is contained in:
devmrko
2026-06-23 15:19:04 +09:00
parent a542a7b735
commit 0b43750a32
7 changed files with 59 additions and 36 deletions

View File

@@ -71,6 +71,12 @@
VALUES (#{columnId}, #{objectId}, UPPER(#{columnName}), #{sensitiveYn})
</insert>
<update id="updateOrdsPath">
UPDATE cb_protected_object
SET ords_path = #{ordsPath,jdbcType=VARCHAR}
WHERE object_id = #{objectId,jdbcType=NUMERIC}
</update>
<update id="disableObject">
UPDATE cb_protected_object
SET enabled_yn = 'N'