forked from platypush/platypush
Added is_configuration flag to entities
This commit is contained in:
parent
81fee3ea2a
commit
c32aecece3
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ if 'entity' not in Base.metadata:
|
|||
is_read_only = Column(Boolean, default=False)
|
||||
is_write_only = Column(Boolean, default=False)
|
||||
is_query_disabled = Column(Boolean, default=False)
|
||||
is_configuration = Column(Boolean, default=False)
|
||||
created_at = Column(
|
||||
DateTime(timezone=False), default=datetime.utcnow(), nullable=False
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue