Skip to content

Commit

Permalink
Use same timestamp for the event.
Browse files Browse the repository at this point in the history
  • Loading branch information
flexable777 committed Jan 29, 2025
1 parent 0a613b4 commit 4cfbb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/db/migration/V181__dvh_tr_migrations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class V181__dvh_tr_migrations : BaseJavaMigration() {
preparedStatement.setString(5, UtsendingStatus.IKKE_SENDT.name)
preparedStatement.setString(6, ourJacksonObjectMapper().writeValueAsString(statistikkTilDVH))
preparedStatement.setString(7, EventType.STATS_DVH.name)
preparedStatement.setObject(8, LocalDateTime.now())
preparedStatement.setObject(8, now)
preparedStatement.setObject(9, null)

preparedStatement.executeUpdate()
Expand Down

0 comments on commit 4cfbb96

Please sign in to comment.