create method
void
create(})
Adds the field to create statement
Implementation
void create(Create statement,
{bool autoIncrement = false,
bool primary = false,
bool isNullable = false,
String? foreignTable,
String? foreignCol,
String? uniqueGroup}) {
statement.addInt(name,
isNullable: isNullable,
autoIncrement: autoIncrement,
primary: primary,
foreignTable: foreignTable,
foreignCol: foreignCol,
uniqueGroup: uniqueGroup);
}