fix: Standardize EF Core migrations table names for consistency
- Rename EmailApiDbContext MigrationTableName from '_EmailApiMigrations' to '_Migrations' - Rename MyAiDbContext MigrationTableName from '_MyAiMigrations' to '_Migrations' - Add migrations to rename tables in database: emailApi._EmailApiMigrations → emailApi._Migrations, myAi._MyAiMigrations → myAi._Migrations - Aligns with naming convention used in other schemas (cvMatcher, cvSearch, rag) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -6,7 +6,7 @@ namespace MyAi.Data;
|
||||
public sealed class MyAiDbContext : DbContext
|
||||
{
|
||||
public const string SchemaName = "myAi";
|
||||
public const string MigrationTableName = "_MyAiMigrations";
|
||||
public const string MigrationTableName = "_Migrations";
|
||||
|
||||
public MyAiDbContext(DbContextOptions<MyAiDbContext> options) : base(options) { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user