我制作聊天后端,我需要包含两个用户的消息历史记录表。
有没有办法以正确的方式做类似的事情?
static func prepare(_ database: Database) throws {
try database.create("historys") { history in
history.id()
history.parent(User.self, optional: false)
history.parent(User.self, optional: false)
}
}
现在我收到多个 user_id 字段的错误。