platypush/platypush/entities/motion.py

21 lines
507 B
Python

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