-
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.
5795-Creating the new partitions for the new coverage table
- Loading branch information
1 parent
da7c005
commit 1a07dd0
Showing
2 changed files
with
64 additions
and
1 deletion.
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
61 changes: 61 additions & 0 deletions
61
common/src/main/resources/db/changelog/v2023/extend_coverage_partition.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,61 @@ | ||
--changeset AB2D-5795 sadibhatla | ||
|
||
create table sandbox_2024 partition of sandbox | ||
for values in (2024); | ||
create table sandbox_2025 partition of sandbox | ||
for values in (2025); | ||
|
||
create table coverage_anthem_united_2024 partition of coverage_anthem_united | ||
for values in (2024); | ||
create table coverage_anthem_united_2025 partition of coverage_anthem_united | ||
for values in (2025); | ||
|
||
create table coverage_bcbs_2024 partition of coverage_bcbs | ||
for values in (2024); | ||
create table coverage_bcbs_2025 partition of coverage_bcbs | ||
for values in (2025); | ||
|
||
create table coverage_centene_2024 partition of coverage_centene | ||
for values in (2024); | ||
create table coverage_centene_2025 partition of coverage_centene | ||
for values in (2025); | ||
|
||
create table coverage_cigna1_2024 partition of coverage_cigna1 | ||
for values in (2024); | ||
create table coverage_cigna1_2025 partition of coverage_cigna1 | ||
for values in (2025); | ||
|
||
create table coverage_cigna2_2024 partition of coverage_cigna2 | ||
for values in (2024); | ||
create table coverage_cigna2_2025 partition of coverage_cigna2 | ||
for values in (2025); | ||
|
||
create table coverage_cvs_2024 partition of coverage_cvs | ||
for values in (2024); | ||
create table coverage_cvs_2025 partition of coverage_cvs | ||
for values in (2025); | ||
|
||
create table coverage_humana_2024 partition of coverage_humana | ||
for values in (2024); | ||
create table coverage_humana_2025 partition of coverage_humana | ||
for values in (2025); | ||
|
||
create table coverage_united1_2024 partition of coverage_united1 | ||
for values in (2024); | ||
create table coverage_united1_2025 partition of coverage_united1 | ||
for values in (2025); | ||
|
||
create table coverage_united_2024 partition of coverage_united2 | ||
for values in (2024); | ||
create table coverage_united_2025 partition of coverage_united2 | ||
for values in (2025); | ||
|
||
create table coverage_mutual_dean_clear_cambia_rite_2024 partition of coverage_mutual_dean_clear_cambia_rite | ||
for values in (2024); | ||
create table coverage_mutual_dean_clear_cambia_rite_2025 partition of coverage_mutual_dean_clear_cambia_rite | ||
for values in (2025); | ||
|
||
create table coverage_misc_2024 partition of coverage_misc | ||
for values in (2024); | ||
create table coverage_misc_2025 partition of coverage_misc | ||
for values in (2025); |