primaryKey method
Add PRIMARY KEY constraint
Makes the column the primary key for the table.
Implementation
SchemaUtils primaryKey() {
_constraints.add("PRIMARY KEY");
return this;
}
Add PRIMARY KEY constraint
Makes the column the primary key for the table.
SchemaUtils primaryKey() {
_constraints.add("PRIMARY KEY");
return this;
}