This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Shedlock Moved Delete to DB Changed Job to Cron Added index * removed rate
- Loading branch information
1 parent
9013d1c
commit 96c1e82
Showing
10 changed files
with
73 additions
and
3 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
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,29 @@ | ||
databaseChangeLog: | ||
- changeSet: | ||
id: add-shedlock | ||
author: mschulte-tsi | ||
changes: | ||
- createTable: | ||
tableName: shedlock | ||
columns: | ||
- column: | ||
name: name | ||
type: varchar(64) | ||
constraints: | ||
nullable: false | ||
primaryKey: true | ||
- column: | ||
name: lock_until | ||
type: datetime(2) | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: locked_at | ||
type: datetime(2) | ||
constraints: | ||
nullable: false | ||
- column: | ||
name: locked_by | ||
type: varchar(255) | ||
constraints: | ||
nullable: false |
12 changes: 12 additions & 0 deletions
12
src/main/resources/db/changelog/v006-add-index-dob-hashed-guid.yml
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,12 @@ | ||
databaseChangeLog: | ||
- changeSet: | ||
id: add-unique-hashed-guid | ||
author: mschulte-tsi | ||
changes: | ||
- createIndex: | ||
tableName: app_session | ||
indexName: idx_app_session_hashed_guid_dob | ||
columns: | ||
- column: | ||
name: hashed_guid_dob | ||
type: varchar(64) |
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