Say one has a prisma data model specified like this
// schema.prisma
model Transaction {
id Int @id @default(autoincrement())
// other stuff...
}
What if one wanted to start the ids at some arbitrary number?
After looking at the prisma reference docs, I have not seen a hint on how do this.