Rename email schema from 'emailApi' to 'email' — consistent naming convention

- 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>
This commit is contained in:
2026-05-29 09:40:49 +03:00
parent 487924e345
commit 707f547014
+1 -1
View File
@@ -6,6 +6,6 @@ namespace EmailApi.Data;
/// </summary> /// </summary>
public static class MigrationConstants public static class MigrationConstants
{ {
public const string SchemaName = "emailApi"; public const string SchemaName = "email";
public const string MigrationTableName = "_Migrations"; public const string MigrationTableName = "_Migrations";
} }