forked from platypush/platypush
Fabio Manganiello
d872835093
- 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.
29 lines
620 B
Python
29 lines
620 B
Python
import logging
|
|
|
|
from sqlalchemy import Column, ForeignKey, Integer, String
|
|
|
|
from platypush.common.db import is_defined
|
|
|
|
from . import Entity
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
if not is_defined('variable'):
|
|
|
|
class Variable(Entity):
|
|
"""
|
|
Models a variable entity.
|
|
"""
|
|
|
|
__tablename__ = 'variable'
|
|
|
|
id = Column(
|
|
Integer, ForeignKey('entity.id', ondelete='CASCADE'), primary_key=True
|
|
)
|
|
value = Column(String)
|
|
|
|
__table_args__ = {'keep_existing': True}
|
|
__mapper_args__ = {
|
|
'polymorphic_identity': __tablename__,
|
|
}
|