generator-oda-api-simple
Version:
api-simple project genrator
23 lines (22 loc) • 378 B
text/typescript
export default {
name: 'Subject',
fields: {
name: {
identity: true,
},
groups: {
indexed: true,
relation: {
belongsToMany: 'StudentsGroup#',
using: 'StudentsGroupSubject#',
},
},
teacher: {
indexed: true,
relation: {
belongsTo: 'Teacher#',
opposite: 'subjects',
},
},
},
};