-
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.
refac: Update metering point type and constraints (#3068)
* Rename effect settlement to capacity settlement in python * Rename to capacity settlement in dotnet * Revert "Rename to capacity settlement in dotnet" This reverts commit 8911013. * dotnet * Create 2024120161500_alter_tables__metering_point_type_constraints.sql * Update 202412161500_alter_tables__metering_point_type_constraints.sql * Update MeteringPointTypeMapperTests.cs * . * . * refac: Update metering point type and constraints
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
...atamigration/migration_scripts/202412170800_update_tables__metering_point_type_values.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,14 @@ | ||
UPDATE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.time_series_points | ||
SET metering_point_type = 'capacity_settlement' | ||
WHERE metering_point_type = 'effect_settlement'; | ||
GO | ||
|
||
UPDATE {CATALOG_NAME}.{WHOLESALE_RESULTS_INTERNAL_DATABASE_NAME}.amounts_per_charge | ||
SET metering_point_type = 'capacity_settlement' | ||
WHERE metering_point_type = 'effect_settlement'; | ||
GO | ||
|
||
UPDATE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.metering_point_periods | ||
SET metering_point_type = 'capacity_settlement' | ||
WHERE metering_point_type = 'effect_settlement'; | ||
GO |
26 changes: 26 additions & 0 deletions
26
...igration/migration_scripts/202412170820_alter_tables__metering_point_type_constraints.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,26 @@ | ||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.time_series_points | ||
DROP CONSTRAINT IF EXISTS metering_point_type_chk | ||
GO | ||
|
||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.time_series_points | ||
ADD CONSTRAINT metering_point_type_chk | ||
CHECK (metering_point_type IN ( 'production' , 'consumption' , 'exchange' , 've_production' , 'net_production' , 'supply_to_grid' , 'consumption_from_grid' , 'wholesale_services_information' , 'own_production' , 'net_from_grid' , 'net_to_grid' , 'total_consumption' , 'electrical_heating' , 'net_consumption' , 'capacity_settlement' )) | ||
GO | ||
|
||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_RESULTS_INTERNAL_DATABASE_NAME}.amounts_per_charge | ||
DROP CONSTRAINT IF EXISTS metering_point_type_chk | ||
GO | ||
|
||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_RESULTS_INTERNAL_DATABASE_NAME}.amounts_per_charge | ||
ADD CONSTRAINT metering_point_type_chk | ||
CHECK (metering_point_type IN ( 'production' , 'consumption' , 'exchange' , 've_production' , 'net_production' , 'supply_to_grid' , 'consumption_from_grid' , 'wholesale_services_information' , 'own_production' , 'net_from_grid' , 'net_to_grid' , 'total_consumption' , 'electrical_heating' , 'net_consumption' , 'capacity_settlement' )) | ||
GO | ||
|
||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.metering_point_periods | ||
DROP CONSTRAINT IF EXISTS metering_point_type_chk | ||
GO | ||
|
||
ALTER TABLE {CATALOG_NAME}.{WHOLESALE_BASIS_DATA_INTERNAL_DATABASE_NAME}.metering_point_periods | ||
ADD CONSTRAINT metering_point_type_chk | ||
CHECK (metering_point_type IN ( 'production' , 'consumption' , 'exchange' , 've_production' , 'net_production' , 'supply_to_grid' , 'consumption_from_grid' , 'wholesale_services_information' , 'own_production' , 'net_from_grid' , 'net_to_grid' , 'total_consumption' , 'electrical_heating' , 'net_consumption' , 'capacity_settlement' )) | ||
GO |