fix: update the SQLAlchemy model definition at json column for Log table (#25445)
This commit is contained in:
parent
7cf96cd843
commit
e83a76a586
|
|
@ -987,7 +987,7 @@ class Log(Model): # pylint: disable=too-few-public-methods
|
|||
user_id = Column(Integer, ForeignKey("ab_user.id"))
|
||||
dashboard_id = Column(Integer)
|
||||
slice_id = Column(Integer)
|
||||
json = Column(Text)
|
||||
json = Column(utils.MediumText())
|
||||
user = relationship(
|
||||
security_manager.user_model, backref="logs", foreign_keys=[user_id]
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue