File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -3900,6 +3900,17 @@ class EgoPoliticalBoundaryHvmvSubstPerGem3Nn(Base):
39003900 schema = 'model_draft'
39013901)
39023902
3903+ class EgoRenewableFeedin (Base ):
3904+ __tablename__ = 'ego_renewable_feedin_v031'
3905+ __table_args__ = {'schema' : 'model_draft' }
3906+
3907+ weather_scenario_id = Column (Integer , primary_key = True , nullable = False )
3908+ w_id = Column (Integer , primary_key = True , nullable = False )
3909+ source = Column (Text , primary_key = True , nullable = False )
3910+ weather_year = Column (Integer , primary_key = True , nullable = False )
3911+ power_class = Column (Integer , primary_key = True , nullable = False )
3912+ feedin = Column (ARRAY (DOUBLE_PRECISION (precision = 53 )))
3913+ scenario = Column (Text , primary_key = True , nullable = False )
39033914
39043915class EgoScenario (Base ):
39053916 __tablename__ = 'ego_scenario'
You can’t perform that action at this time.
0 commit comments