forked from platypush/platypush
19 lines
473 B
Python
19 lines
473 B
Python
from sqlalchemy import Column, Integer, ForeignKey
|
|
|
|
from platypush.common.db import Base
|
|
|
|
from .sensors import NumericSensor
|
|
|
|
|
|
if 'illuminance_sensor' not in Base.metadata:
|
|
|
|
class IlluminanceSensor(NumericSensor):
|
|
__tablename__ = 'illuminance_sensor'
|
|
|
|
id = Column(
|
|
Integer, ForeignKey(NumericSensor.id, ondelete='CASCADE'), primary_key=True
|
|
)
|
|
|
|
__mapper_args__ = {
|
|
'polymorphic_identity': __tablename__,
|
|
}
|