Skip to content

Commit af7a365

Browse files
amend column for reviewed applicant records
1 parent 9aaaa24 commit af7a365

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/typescript/migrations/2025.06.24T18.20.15.create-reviewed-application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const TABLE_NAME = "reviewed_applicant_records";
66

77
export const up: Migration = async ({ context: sequelize }) => {
88
await sequelize.getQueryInterface().createTable(TABLE_NAME, {
9-
applicantId: {
9+
applicantRecordId: {
1010
type: DataType.STRING,
1111
allowNull: false,
1212
references: {

backend/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export type ApplicantDTO = {
9898
export type ApplicantRecordDTO = {
9999
id: number;
100100
applicantId: string;
101-
role?: string; // EDIT LATER
101+
position: string; // EDIT LATER
102102
roleSpecificQuestions: string[];
103103
choice: number;
104104
status: ApplicationStatus;

0 commit comments

Comments
 (0)