Files
parcer/server/src/models/associations.ts

8 lines
203 B
TypeScript
Raw Normal View History

2024-10-09 23:07:28 +05:30
import Robot from './Robot';
import Run from './Run';
export default function setupAssociations() {
Run.belongsTo(Robot, { foreignKey: 'robotId' });
Robot.hasMany(Run, { foreignKey: 'robotId' });
}