I have two models like this: ```type User { id:...
# orm-help
l
I have two models like this:
Copy code
type User {
  id: ID! @id
  todos: [Todo!]!
}

type Todo {
  id: ID! @id
  author: User! @relation(type: TABLE)
}
How can i migrate to
INLINE
without loosing data? Prisma 1 question btw..