forked from platypush/platypush
- Interaction with entities should occur through the `entities.action` method, not by implementing native methods on each of the model objects
14 lines
315 B
Python
14 lines
315 B
Python
from sqlalchemy import Column, Integer, ForeignKey, Boolean
|
|
|
|
from .devices import Device
|
|
|
|
|
|
class Switch(Device):
|
|
__tablename__ = 'switch'
|
|
|
|
id = Column(Integer, ForeignKey(Device.id), primary_key=True)
|
|
state = Column(Boolean)
|
|
|
|
__mapper_args__ = {
|
|
'polymorphic_identity': __tablename__,
|
|
}
|