Skip to content

Commit

Permalink
test(client): multiSchema, test same table name
Browse files Browse the repository at this point in the history
Related #15009
  • Loading branch information
Jolg42 committed Oct 25, 2022
1 parent d45a386 commit 03c5b48
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -20,7 +20,7 @@ export default testMatrix.setupSchema(({ provider, mapTable }) => {
posts Post[]
@@schema("base")
${mapTable ? '@@map("some_table-1")' : ''}
${mapTable ? '@@map("some_table")' : ''}
}
model Post {
Expand All @@ -30,7 +30,7 @@ export default testMatrix.setupSchema(({ provider, mapTable }) => {
author User? @relation(fields: [authorId], references: [id])
@@schema("transactional")
${mapTable ? '@@map("some_table-2")' : ''}
${mapTable ? '@@map("some_table")' : ''}
}
`
})

0 comments on commit 03c5b48

Please sign in to comment.