You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
324 B
Python

from sqlalchemy import Column, Float, Integer, String
from src.database.core import Base
from src.models import DefaultMixin, IdentityMixin
class Yeardata(Base, DefaultMixin, IdentityMixin):
__tablename__ = "lcc_ms_year_data"
year = Column(Integer, nullable=False)
rp_per_kwh = Column(Float, nullable=False)