-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RAS-940: Questionnaire Completion Rate Information (#288)
* Initial commit of code changes * auto patch increment * Have updated the naming * Updated changelog * Have added an additional test to ensure that datetime is added * Have ran mvn format * I have removed the test and just added the check within the first test * Have made changes based on recommendations and have updated name of audit test * Forgot to format --------- Co-authored-by: ras-rm-pr-bot <[email protected]>
- Loading branch information
1 parent
a420bf0
commit d4d13dd
Showing
8 changed files
with
30 additions
and
9 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
2 changes: 2 additions & 0 deletions
2
src/main/resources/database/changes/release-36/add_timestamp_for_status_change.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,2 @@ | ||
ALTER TABLE ONLY casesvc.casegroup | ||
ADD status_change_timestamp timestamp with time zone; |
11 changes: 11 additions & 0 deletions
11
src/main/resources/database/changes/release-36/changelog.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,11 @@ | ||
databaseChangeLog: | ||
|
||
- changeSet: | ||
id: 36-1 | ||
author: Steve Scorfield | ||
changes: | ||
- sqlFile: | ||
comment: Add a timestamp column for when a status change is made to the survey for a respondent | ||
path: add_timestamp_for_status_change.sql | ||
relativeToChangelogFile: true | ||
splitStatements: false |
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