Skip to content

Commit 41d9bac

Browse files
authored
- Updated security logs columns to work in Oracle as clob
1 parent 1dd0843 commit 41d9bac

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Fixed
1313

14+
- Updated security logs columns to work in Oracle as `clob`
1415
- `cbsecurity_logs` is hard coded instead of using module setting
1516

1617
## [3.4.1] - 2023-08-09

models/util/DBLogger.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ component accessors="true" singleton threadsafe {
459459
return "TEXT";
460460
}
461461
case "Oracle": {
462-
return "LONGTEXT";
462+
return "CLOB";
463463
}
464464
default: {
465465
return "TEXT";

0 commit comments

Comments
 (0)