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?