autoIncrement method

SchemaUtils autoIncrement()

Add AUTOINCREMENT modifier

Makes the column automatically increment for each new row. Only works with INTEGER PRIMARY KEY columns.

Implementation

SchemaUtils autoIncrement() {
  _constraints.add("AUTOINCREMENT");
  return this;
}