我有一个类似
的模型class Conversation(CommonBase, Base):
[...]
title = schema.Column(types.String(50), nullable=True)
updated_at = schema.Column(
types.DateTime,
onupdate=now)
[...]
现在我需要进行数据迁移,不更改updated_at值,但只更改标题。我该怎么做?