addPrimaryInt method
Implementation
Create addPrimaryInt(String name,
{String? foreignTable, String? foreignCol, String? uniqueGroup}) {
Foreign? foreign;
if (foreignTable != null) {
foreign = Foreign(foreignTable, foreignCol != null ? foreignCol : name);
}
_columns[name] =
CreateInt.primary(name, foreignKey: foreign, uniqueGroup: uniqueGroup);
return this;
}