diff --git a/platypush/entities/bluetooth/_service.py b/platypush/entities/bluetooth/_service.py index 699bc91b..d0a17798 100644 --- a/platypush/entities/bluetooth/_service.py +++ b/platypush/entities/bluetooth/_service.py @@ -48,6 +48,9 @@ if 'bluetooth_service' not in Base.metadata: is_ble = Column(Boolean, default=False) """ Whether the service is a BLE service. """ + connected = Column(Boolean, default=False) + """ Whether an active connection exists to this service. """ + __mapper_args__ = { 'polymorphic_identity': __tablename__, }