platypush/platypush/entities/buttons.py
Fabio Manganiello d872835093
New API to check if a table class exists before defining it.
- Check if it's part of the metadata through a function call rather than
  checking `Base.metadata` in every single module.

- Make it possible to override them (mostly for doc generation logic
  that needs to be able to import those classes).

- Make it possible to extend them.
2023-10-09 01:33:44 +02:00

28 lines
552 B
Python

import logging
from sqlalchemy import (
Column,
ForeignKey,
Integer,
)
from platypush.common.db import is_defined
from .sensors import EnumSensor
logger = logging.getLogger(__name__)
if not is_defined('button'):
class Button(EnumSensor):
__tablename__ = 'button'
id = Column(
Integer, ForeignKey(EnumSensor.id, ondelete='CASCADE'), primary_key=True
)
__table_args__ = {'extend_existing': True}
__mapper_args__ = {
'polymorphic_identity': __tablename__,
}