Implement Resume Analysis (#2882)

* Implement Resume Analysis

* 📦 v5.0.17 - https://docs.rxresu.me/changelog
This commit is contained in:
Amruth Pillai
2026-04-09 09:04:27 +02:00
committed by GitHub
parent 1810dc8b07
commit 1b266ba7ac
74 changed files with 7344 additions and 493 deletions
@@ -0,0 +1,10 @@
CREATE TABLE "resume_analysis" (
"id" uuid PRIMARY KEY,
"analysis" jsonb NOT NULL,
"resume_id" uuid NOT NULL UNIQUE,
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
"updated_at" timestamp with time zone DEFAULT now() NOT NULL
);
--> statement-breakpoint
CREATE INDEX "resume_analysis_resume_id_index" ON "resume_analysis" ("resume_id");--> statement-breakpoint
ALTER TABLE "resume_analysis" ADD CONSTRAINT "resume_analysis_resume_id_resume_id_fkey" FOREIGN KEY ("resume_id") REFERENCES "resume"("id") ON DELETE CASCADE;
File diff suppressed because it is too large Load Diff