16 lines
455 B
Python
16 lines
455 B
Python
"""SQLAlchemy model for the 'states_meta' table in the Home Assistant PostgreSQL database."""
|
|
|
|
from sqlalchemy import Column, BigInteger, String
|
|
|
|
from .base import Base
|
|
|
|
|
|
class StatesMeta(Base):
|
|
"""SQLAlchemy model for the 'states_meta' table."""
|
|
|
|
__tablename__ = "states_meta"
|
|
__table_args__ = {"schema": "public"}
|
|
|
|
metadata_id = Column(BigInteger, primary_key=True, autoincrement=True)
|
|
entity_id = Column(String(255), nullable=True)
|