Staging to Production #51

Merged
claude merged 165 commits from main into production 2026-06-08 18:28:46 +00:00
Showing only changes of commit c675954f8a - Show all commits
@@ -12,7 +12,7 @@ namespace CvSearch.Data.Migrations
{ {
migrationBuilder.CreateTable( migrationBuilder.CreateTable(
name: "JobProviders", name: "JobProviders",
schema: "cvSearch", schema: MigrationConstants.SchemaName,
columns: table => new columns: table => new
{ {
Id = table.Column<int>(type: "int", nullable: false) Id = table.Column<int>(type: "int", nullable: false)
@@ -33,7 +33,7 @@ namespace CvSearch.Data.Migrations
// Seed the three default providers — all disabled so the feature is opt-in per environment. // Seed the three default providers — all disabled so the feature is opt-in per environment.
// Enable a provider by setting its Enabled column to 1 via SQL or a future admin UI. // Enable a provider by setting its Enabled column to 1 via SQL or a future admin UI.
migrationBuilder.InsertData( migrationBuilder.InsertData(
schema: "cvSearch", schema: MigrationConstants.SchemaName,
table: "JobProviders", table: "JobProviders",
columns: ["Name", "Enabled", "SearchUrlTemplate", "JobLinkContains", "InitialKeywordsJson", "MaxResults", "DisplayOrder"], columns: ["Name", "Enabled", "SearchUrlTemplate", "JobLinkContains", "InitialKeywordsJson", "MaxResults", "DisplayOrder"],
values: new object[,] values: new object[,]
@@ -49,7 +49,7 @@ namespace CvSearch.Data.Migrations
{ {
migrationBuilder.DropTable( migrationBuilder.DropTable(
name: "JobProviders", name: "JobProviders",
schema: "cvSearch"); schema: MigrationConstants.SchemaName);
} }
} }
} }