Setting AUTO_INCREMENT starting value
In MySQL it is possible to make auto incremented column to start from specified value. For example
ALTER TABLE tbl AUTO_INCREMENT = 100;
Is it possible to do that using Drizzle?2 Replies
It right now, but we are going to support it
You can always add this statement to migration file before applying to database
So you won’t be blocked now
Got it, thank you