-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PAGOPA-1488-renewal-debt-positions' of
https://github.com/pagopa/pagopa-debt-position.git into PAGOPA-1488-renewal-debt-positions Conflicts: src/main/java/it/gov/pagopa/debtposition/scheduler/HistoricizationScheduler.java src/main/resources/application-h2.properties src/test/resources/application.properties
- Loading branch information
Showing
7 changed files
with
376 additions
and
39 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-- see: https://www.springcloud.io/post/2022-07/shedlock/#gsc.tab=0 | ||
|
||
CREATE TABLE shedlock ( | ||
name VARCHAR(64), | ||
lock_until TIMESTAMP(3) NULL, | ||
locked_at TIMESTAMP(3) NULL, | ||
locked_by VARCHAR(255), | ||
PRIMARY KEY (name) | ||
); |
Oops, something went wrong.