platypush/platypush/entities/presence.py

25 lines
585 B
Python
Raw Normal View History

2023-02-23 01:42:26 +01:00
from sqlalchemy import Column, Integer, ForeignKey
from platypush.common.db import is_defined
2023-02-23 01:42:26 +01:00
from .sensors import BinarySensor
if not is_defined('presence_sensor'):
2023-02-23 01:42:26 +01:00
class PresenceSensor(BinarySensor):
2023-02-23 01:42:26 +01:00
"""
A binary sensor that detects presence.
"""
__tablename__ = 'presence_sensor'
id = Column(
Integer, ForeignKey(BinarySensor.id, ondelete='CASCADE'), primary_key=True
)
__table_args__ = {'extend_existing': True}
2023-02-23 01:42:26 +01:00
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}