feat: move job providers to DB and suppress job-search link when none enabled #36

Merged
gelu merged 11 commits from feature/job-providers-db-and-link-guard into main 2026-05-29 10:07:16 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 9bedf57f39 - Show all commits
@@ -73,13 +73,13 @@ namespace CvSearch.Data.Migrations
migrationBuilder.CreateIndex(
name: "IX_JobSearchResults_SessionId",
schema: "cvSearch",
schema: MigrationConstants.SchemaName,
table: "JobSearchResults",
column: "SessionId");
migrationBuilder.CreateIndex(
name: "IX_JobSearchSessions_Status",
schema: "cvSearch",
schema: MigrationConstants.SchemaName,
table: "JobSearchSessions",
column: "Status");
}
@@ -84,7 +84,7 @@ namespace Rag.Data.Migrations
table.ForeignKey(
name: "FK_Chunks_Documents_DocumentId",
column: x => x.DocumentId,
principalSchema: "rag",
principalSchema: MigrationConstants.SchemaName,
principalTable: "Documents",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);