using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace JobTrackerApi.Migrations { /// public partial class AddCvVariants : Migration { // Intentionally a no-op. CvVariants/CvVariantVersions are provisioned by the reconciler in // StartupInitializationExtensions (idempotent, MySQL-safe: varchar not longtext so MariaDB can // index PublicSlug/OwnerUserId). The original CreateTable + CREATE INDEX here indexed unbounded // string columns, which succeeds on SQLite but throws on MariaDB ("BLOB/TEXT column used in key // specification without a key length"), crashing backend startup on prod. Reconciler-owned now, // like CareerProfiles/AiWorkspaceNotes. This migration stays recorded so the chain is intact. /// protected override void Up(MigrationBuilder migrationBuilder) { } /// protected override void Down(MigrationBuilder migrationBuilder) { } } }