how to set an initial autoincrement value

Hello, I want to set an initial autoincrement value for a table.
which can normally be achieved with something like:
ALTER TABLE penguins AUTO_INCREMENT=1001;
how can I achieve this on schema generation?
Was this page helpful?