When doing `@default(autoincrement())` is there a ...
# orm-help
c
When doing
@default(autoincrement())
is there a way to set the autoincrement start value?
r
@Chris Tsongas 👋 Could you try the following and see if it works? 1. Create a migration using
prisma migrate dev --create-only
2. Edit the
.sql
to add the start value 3. Apply the migration using
prisma migrate dev