using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace JobTrackerApi.Migrations { /// public partial class AddCoverLetterVersions : Migration { // Deliberately a no-op. Scaffolded against SQLite, so on MariaDB it would emit a TEXT // CreatedAtUtc and a PRIMARY KEY without AUTO_INCREMENT, and the composite index over those // columns would exceed MySQL's 3072-byte key limit. // // CoverLetterVersions is reconciler-owned and provisioned by StartupInitializationExtensions, // which carries correct DDL per provider and guards the create on JobApplications existing. // This migration exists only to keep the model snapshot in sync. // docs/infrastructure/database-ownership.md. /// protected override void Up(MigrationBuilder migrationBuilder) { } /// protected override void Down(MigrationBuilder migrationBuilder) { } } }