platypush/platypush/entities/motion.py

21 lines
507 B
Python
Raw Permalink Normal View History

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