Staging to Production #51

Merged
claude merged 165 commits from main into production 2026-06-08 18:28:46 +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);