mirror of
https://github.com/apache/superset.git
synced 2026-04-18 15:44:57 +00:00
fix: update the SQLAlchemy model definition at json column for Log table (#25445)
This commit is contained in:
@@ -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]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user