The title says it all.
I want to set the start value for auto increment on a column to 1000000 (to avoid conflicts with a legacy application), but can't find any documentation that tells me how.
Pretty standard table, here's what the relevant bit looks like:
User:   
  attributes:
    export: tables
  columns: 
    id:
     type: integer
     primary: true
     autoincrement: true
    code:
     type: string(6)
...