if i delete record 3, the next time prisma create ...
# orm-help
t
if i delete record 3, the next time prisma create new record, will the new id be 3 or 6?
r
@tylim 👋 This will be
6
as Prisma sets the
id
field to be auto incremented, the same behaviour that all databases follow for incrementing primary keys 🙂
t
ok thank you Ryan
🙌 1