You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model User {
id BigInt @id @default(autoincrement())
name String
}
let client: PrismaClient=PrismaClient::_builder().with_url("file:xc-dev.sqlite".to_string()).build().await.unwrap();client._db_push().await.unwrap();client.user_().create("name".to_string(),vec![]).exec().await.unwrap();
This will fail. But if I change the BigInt to Int, it works.
The text was updated successfully, but these errors were encountered:
This will fail. But if I change the
BigInt
toInt
, it works.The text was updated successfully, but these errors were encountered: