Skip to content

Commit

Permalink
fix: test compatibility with CockroachDB
Browse files Browse the repository at this point in the history
  • Loading branch information
FGoessler committed Jan 24, 2025
1 parent 7d648e2 commit feb69a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema-engine/sql-migration-tests/tests/migrations/views.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ fn creates_no_m2m_relations_to_views(api: TestApi) {
}
model Organization {
id Int @id @default(autoincrement())
id Int @id
viewUsers ViewUser[]
}
view ViewUser {
userId Int @id @unique
userId Int @id @unique
organizations Organization[]
}
"#};
Expand Down

0 comments on commit feb69a3

Please sign in to comment.