openspecimen
Database
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
add_secured_cfg_prop
Parameters
Name
Type
Mode
moduleName
text
IN
propName
text
IN
propCode
text
IN
propDesc
text
IN
propType
text
IN
defValue
text
IN
Definition
begin call add_cfg_prop(moduleName, propName, propCode, propDesc, propType, defValue); select identifier into @module_id from os_modules where name = moduleName; update os_cfg_props set is_secure = 1 where module_id = @module_id and name = propName; end