We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
clob
1 parent 1dd0843 commit 41d9bacCopy full SHA for 41d9bac
changelog.md
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Fixed
13
14
+- Updated security logs columns to work in Oracle as `clob`
15
- `cbsecurity_logs` is hard coded instead of using module setting
16
17
## [3.4.1] - 2023-08-09
models/util/DBLogger.cfc
@@ -459,7 +459,7 @@ component accessors="true" singleton threadsafe {
459
return "TEXT";
460
}
461
case "Oracle": {
462
- return "LONGTEXT";
+ return "CLOB";
463
464
default: {
465
0 commit comments