primaryKey method

SchemaUtils primaryKey()

Add PRIMARY KEY constraint

Makes the column the primary key for the table.

Implementation

SchemaUtils primaryKey() {
  _constraints.add("PRIMARY KEY");
  return this;
}