-
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.
commit 9f0cff0 Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Wed Jul 20 17:00:39 2022 +0200 chore: Add migrations to remove unnecessary tables n columns commit 60cf74b Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Tue Jul 5 16:38:30 2022 +0200 Transfers stuff commit 9576aeb Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Wed Jun 29 09:58:51 2022 +0200 fix: Update parameters view commit 9d7f3f5 Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Tue Jun 28 10:09:56 2022 +0200 fix: Fix query use groupby commit 8ca083d Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Tue Jun 28 09:43:45 2022 +0200 feat: Add transfer parameters id to existing transfers parameters tables commit 170ddd3 Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Mon Jul 18 15:34:18 2022 +0200 feat: Add Education Zone select box to Schools Users should now be able to select an education zone from existing educationz zones when creating/updating schools. commit 0d1e0b0 Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Mon Jul 18 12:28:55 2022 +0200 feat: Move optional import parameters into a collapsible element; commit 7be4f88 Author: Zikani Nyirenda Mwase <zikaninyirenda@cgatechnologies.org.uk> Date: Mon Jul 18 12:28:20 2022 +0200 Update version to 1.6.1-SNAPSHOT
- Loading branch information
Showing
38 changed files
with
703 additions
and
344 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
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
1 change: 1 addition & 0 deletions
1
.../src/main/resources/db/migration/V1.53.1656340179520__Alter_transfer_education_params.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 @@ | ||
ALTER TABLE transfer_education_parameters ADD transfer_parameter_id BIGINT(19) NOT NULL AFTER id; |
1 change: 1 addition & 0 deletions
1
.../src/main/resources/db/migration/V1.53.1656340179820__Alter_transfer_household_params.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 @@ | ||
ALTER TABLE transfer_households_parameters ADD transfer_parameter_id BIGINT(19) NOT NULL AFTER id; |
6 changes: 6 additions & 0 deletions
6
sctp-core/src/main/resources/db/migration/V1.61.1658156014681__Remove_unused_tables.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,6 @@ | ||
-- This migration removes unused tables in the schema. | ||
-- The following will be dropped: education_zone, delivery_agencies | ||
|
||
DROP TABLE education_zone; | ||
|
||
DROP TABLE delivery_agencies; |
1 change: 1 addition & 0 deletions
1
...rc/main/resources/db/migration/V1.61.1658156153199__Remove_ta_id_from_transfer_period.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 @@ | ||
ALTER TABLE transfer_periods DROP COLUMN ta_id; |
1 change: 1 addition & 0 deletions
1
...sources/db/migration/V1.61.1658318565428__Remove_enrollment_session_id_from_transfers.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 @@ | ||
ALTER TABLE transfers DROP COLUMN enrollment_session_id; |
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
Oops, something went wrong.