File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ export default class ApplicantRecord extends Model {
2121 @Column ( { type : DataType . STRING } )
2222 applicantId ! : string ;
2323
24- @ForeignKey ( ( ) => Role )
25- @Column ( { type : DataType . STRING } )
26- role ! : string ;
24+ // @ForeignKey (() => Role)
25+ // @Column ({ type: DataType.STRING })
26+ // role!: string;
2727
2828 @Column ( { type : DataType . ARRAY ( DataType . STRING ) } )
2929 roleSpecificQuestions ! : string [ ] ;
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ export type ApplicantDTO = {
9898export type ApplicantRecordDTO = {
9999 id : number ;
100100 applicantId : string ;
101- role : string ;
101+ role ? : string ; // EDIT LATER
102102 roleSpecificQuestions : string [ ] ;
103103 choice : number ;
104104 status : ApplicationStatus ;
You can’t perform that action at this time.
0 commit comments