Skip to content

Commit 97aa1e5

Browse files
committed
modify applicant table names in models
1 parent efc4b37 commit 97aa1e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/typescript/models/applicant.model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import { Column, DataType, Model, Table } from "sequelize-typescript";
44

5-
@Table({ tableName: "applicantresponse" })
5+
@Table({ tableName: "applicants" })
66
export default class Applicant extends Model {
77
@Column({ type: DataType.STRING, primaryKey: true })
88
id!: string;

backend/typescript/models/applicantRecord.model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
import Applicant from "./applicant.model";
1616
import Position from "./position.model";
1717

18-
@Table({ tableName: "applicantresponse" })
18+
@Table({ tableName: "applicant_records" })
1919
export default class ApplicantRecord extends Model {
2020
@Column({ type: DataType.STRING, primaryKey: true })
2121
id!: string;

0 commit comments

Comments
 (0)