Add variable management
This commit is contained in:
parent
a65dee8962
commit
0ea0cb9d98
7 changed files with 287 additions and 13 deletions
|
@ -23,3 +23,5 @@ class ChargePoint(Base):
|
|||
learn_until = Column(DateTime, nullable=True)
|
||||
|
||||
connectors = relationship("Connector", cascade="delete, delete-orphan")
|
||||
transactions = relationship("Transaction", cascade="delete, delete-orphan")
|
||||
variables = relationship("ChargepointVariable", cascade="delete, delete-orphan")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue