fix(migrations): replace hardcoded schema strings with MigrationConstants.SchemaName

Two migration files had literal schema strings that were missed in earlier passes:
- cv-search-data AddJobSearchTables: two CreateIndex calls used "cvSearch"
- rag-data InitialRagSchema: FK principalSchema used "rag"

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 12:46:41 +03:00
parent b78ede23cf
commit 9bedf57f39
2 changed files with 3 additions and 3 deletions
@@ -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");
}