``` type Test @model { id: ID! @isUnique creat...
# prisma-whats-new
f
Copy code
type Test @model {
  id: ID! @isUnique
  createdAt: DateTime!
  updatedAt: DateTime!
  testId: Int! @isUnique
  title: String!
  result: String
  stepCount: Int!
  featureId: Int!
  automationResults: [AutomationResult!]! @relation(name: "AutomationResult")
}

type AutomationResult @model {
  id: ID! @isUnique
  testId: Int! @isUnique
  qa: Int
  stg: Int
  prod: Int
  test: Test @relation(name: "AutomationResult")
}