DbRelation.hasMany constructor
Implementation
factory DbRelation.hasMany(
String name, {
required String table,
required String foreignKey,
}) => DbRelation(
kind: RelationKind.hasMany,
name: name,
table: table,
foreignKey: foreignKey,
);