-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Delete sending of SSPS from job for pilot-users * Delete test * wip * wip * Log after dataToVarselData() * Log data inside toArbeidstakerHendelse * put(ENABLE_AUTO_COMMIT_CONFIG, "true") * wip * Revert ENABLE_AUTO_COMMIT_CONFIG to false * Logging in flow, with fnr * Delete sending of SSPS from job for pilot-users * Delete test * wip * wip * Log after dataToVarselData() * Log data inside toArbeidstakerHendelse * put(ENABLE_AUTO_COMMIT_CONFIG, "true") * wip * Revert ENABLE_AUTO_COMMIT_CONFIG to false * Logging in flow, with fnr * wip * wip * Add backup table for utsendt SSPS for pilot * Add backup table for utsendt SSPS for pilot * Cleanup: delete test logging * Cleanup: delete test logging2 * wip * qa --------- Co-authored-by: Luan Tran <[email protected]>
- Loading branch information
Showing
10 changed files
with
118 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,4 @@ spec: | |
access: write | ||
- team: team-esyfo | ||
application: esyfo-kafka-manager | ||
access: write | ||
access: readwrite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/resources/db/migration/V34__Create_table_for_backup_utsendte_mer_veiledning.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
CREATE TABLE utsendt_mer_veiledning_varsel_backup | ||
( | ||
uuid UUID PRIMARY KEY, | ||
fnr VARCHAR(11) NOT NULL, | ||
aktor_id VARCHAR(13), | ||
type VARCHAR(100) NOT NULL, | ||
utsendt_tidspunkt TIMESTAMP NOT NULL, | ||
planlagt_varsel_id UUID, | ||
narmesteleder_fnr VARCHAR(11), | ||
orgnummer varchar(9), | ||
kanal VARCHAR(50), | ||
ekstern_ref VARCHAR(50), | ||
ferdigstilt_tidspunkt TIMESTAMP, | ||
arbeidsgivernotifikasjon_merkelapp VARCHAR(50) | ||
); | ||
|
||
CREATE INDEX utsendt_mer_veiledning_varsel_backup_fnr_index ON utsendt_mer_veiledning_varsel_backup (fnr); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters