Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设有一个像这样指定的棱镜数据模型
// schema.prisma model Transaction { id Int @id @default(autoincrement()) // other stuff... }
如果想从某个任意数字开始 id 怎么办?
在查看了 prisma 参考文档后,我没有看到有关如何执行此操作的提示。