platypush/platypush/entities/pressure.py

25 lines
582 B
Python
Raw Normal View History

2023-02-23 01:12:27 +01:00
from sqlalchemy import Column, Integer, ForeignKey
from platypush.common.db import is_defined
2023-02-23 01:12:27 +01:00
from .sensors import NumericSensor
if not is_defined('pressure_sensor'):
2023-02-23 01:12:27 +01:00
class PressureSensor(NumericSensor):
"""
A sensor that measures pressure.
"""
__tablename__ = 'pressure_sensor'
id = Column(
Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True
)
__table_args__ = {'extend_existing': True}
2023-02-23 01:12:27 +01:00
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}