foreignId method
Add a foreign key column
Creates an integer column that references another table's primary key. Returns a SchemaUtils instance for adding constraints.
Implementation
SchemaUtils foreignId(String name) {
final column = integer(name);
_columns[name] = column;
return column;
}