platypush/platypush/entities/motion.py

20 lines
455 B
Python
Raw Normal View History

2023-01-21 14:47:18 +01:00
from sqlalchemy import Column, Integer, ForeignKey
from platypush.common.db import Base
from .sensors import BinarySensor
if 'motion_sensor' not in Base.metadata:
class MotionSensor(BinarySensor):
__tablename__ = 'motion_sensor'
id = Column(
Integer, ForeignKey(BinarySensor.id, ondelete='CASCADE'), primary_key=True
)
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}