This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 414f11ff authored by Eduard Frankford's avatar Eduard Frankford
Browse files

fixed audit event bug (could not find column value -> changed to event_value...

fixed audit event bug (could not find column value -> changed to event_value -> because value seems to be a reserved keyword
parent 1935a318
Branches
2 merge requests!142Bringing elasticsearch 8.x into production,!135Resolve "Login not working when clicking on redirect link"
This diff is collapsed.
......@@ -66,7 +66,7 @@
"prettier:format": "prettier --write \"{,src/main/java/**/,src/test/java/**/,src/main/webapp/**/}*.{md,json,yml,html,ts,css,scss,java}\"",
"protractor": "protractor src/test/javascript/protractor.conf.js ",
"serve": "npm run start --",
"start": "ng serve --hmr",
"start": "npm install && ng build --configuration development && ng serve --hmr",
"start-tls": "npm run webapp:dev-ssl",
"test": "ng test --coverage --log-heap-usage -w=2",
"test:watch": "npm run test -- --watch",
......@@ -138,7 +138,7 @@
"@types/selenium-webdriver": "4.0.11",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"browser-sync": "2.27.7",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "2.3.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
......
......@@ -58,8 +58,8 @@
<hibernate.version>5.6.4.Final</hibernate.version>
<!-- The liquibase version should match the one managed by
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-dependencies/${spring-boot.version} -->
<liquibase.version>4.14.0</liquibase.version>
<liquibase-hibernate5.version>4.14.0</liquibase-hibernate5.version>
<liquibase.version>4.6.1</liquibase.version>
<liquibase-hibernate5.version>4.6.1</liquibase-hibernate5.version>
<h2.version>2.1.210</h2.version>
<validation-api.version>2.0.1.Final</validation-api.version>
<jaxb-runtime.version>2.3.3</jaxb-runtime.version>
......
......@@ -44,7 +44,7 @@ public class PersistentAuditEvent implements Serializable {
@ElementCollection
@MapKeyColumn(name = "name")
@Column(name = "value")
@Column(name = "event_value")
@CollectionTable(name = "jhi_persistent_audit_evt_data", joinColumns = @JoinColumn(name = "event_id"))
private Map<String, String> data = new ConcurrentHashMap<>();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment