From 3bb7845cf76677170b8713c85a7c1dade13638ac Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Fri, 26 Jan 2024 15:53:18 +0100 Subject: [PATCH] remove resume length check --- .../20240126145102_remove_payload_limit_for_resume.down.sql | 1 + .../20240126145102_remove_payload_limit_for_resume.up.sql | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 backend/migrations/20240126145102_remove_payload_limit_for_resume.down.sql create mode 100644 backend/migrations/20240126145102_remove_payload_limit_for_resume.up.sql diff --git a/backend/migrations/20240126145102_remove_payload_limit_for_resume.down.sql b/backend/migrations/20240126145102_remove_payload_limit_for_resume.down.sql new file mode 100644 index 0000000000..d2f607c5b8 --- /dev/null +++ b/backend/migrations/20240126145102_remove_payload_limit_for_resume.down.sql @@ -0,0 +1 @@ +-- Add down migration script here diff --git a/backend/migrations/20240126145102_remove_payload_limit_for_resume.up.sql b/backend/migrations/20240126145102_remove_payload_limit_for_resume.up.sql new file mode 100644 index 0000000000..136fba90c8 --- /dev/null +++ b/backend/migrations/20240126145102_remove_payload_limit_for_resume.up.sql @@ -0,0 +1,3 @@ +-- Add up migration script here +ALTER TABLE resume_job +DROP CONSTRAINT resume_job_value_check;