707f547014
- Update MigrationConstants.SchemaName in email-api-data from 'emailApi' to 'email' - All migrations automatically use the new schema name via MigrationConstants reference - Aligns with naming convention: 'email', 'rag', 'cvMatcher', 'cvSearch', 'myAi' Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
12 lines
334 B
C#
12 lines
334 B
C#
namespace EmailApi.Data;
|
|
|
|
/// <summary>
|
|
/// Schema constants used by EmailApiDbContext and migrations.
|
|
/// Centralized to avoid hardcoded strings and ensure consistency.
|
|
/// </summary>
|
|
public static class MigrationConstants
|
|
{
|
|
public const string SchemaName = "email";
|
|
public const string MigrationTableName = "_Migrations";
|
|
}
|