Staging to Production #51

Merged
claude merged 165 commits from main into production 2026-06-08 18:28:46 +00:00
3 changed files with 9 additions and 9 deletions
Showing only changes of commit 181a0b23b5 - Show all commits
@@ -20,13 +20,13 @@ namespace Email.Data.Migrations
{ {
#pragma warning disable 612, 618 #pragma warning disable 612, 618
modelBuilder modelBuilder
.HasDefaultSchema("emailApi") .HasDefaultSchema(MigrationConstants.SchemaName)
.HasAnnotation("ProductVersion", "10.0.7") .HasAnnotation("ProductVersion", "10.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 128); .HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("EmailApi.Data.Entities.EmailTemplateEntity", b => modelBuilder.Entity("Email.Data.Entities.EmailTemplateEntity", b =>
{ {
b.Property<string>("Key") b.Property<string>("Key")
.HasMaxLength(128) .HasMaxLength(128)
@@ -61,7 +61,7 @@ namespace Email.Data.Migrations
b.HasKey("Key", "Language"); b.HasKey("Key", "Language");
b.ToTable("EmailTemplates", "emailApi"); b.ToTable("EmailTemplates", MigrationConstants.SchemaName);
}); });
#pragma warning restore 612, 618 #pragma warning restore 612, 618
} }
@@ -20,13 +20,13 @@ namespace Email.Data.Migrations
{ {
#pragma warning disable 612, 618 #pragma warning disable 612, 618
modelBuilder modelBuilder
.HasDefaultSchema("emailApi") .HasDefaultSchema(MigrationConstants.SchemaName)
.HasAnnotation("ProductVersion", "10.0.7") .HasAnnotation("ProductVersion", "10.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 128); .HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("EmailApi.Data.Entities.EmailTemplateEntity", b => modelBuilder.Entity("Email.Data.Entities.EmailTemplateEntity", b =>
{ {
b.Property<string>("Key") b.Property<string>("Key")
.HasMaxLength(128) .HasMaxLength(128)
@@ -61,7 +61,7 @@ namespace Email.Data.Migrations
b.HasKey("Key", "Language"); b.HasKey("Key", "Language");
b.ToTable("EmailTemplates", "emailApi"); b.ToTable("EmailTemplates", MigrationConstants.SchemaName);
}); });
#pragma warning restore 612, 618 #pragma warning restore 612, 618
} }
@@ -17,13 +17,13 @@ namespace Email.Data.Migrations
{ {
#pragma warning disable 612, 618 #pragma warning disable 612, 618
modelBuilder modelBuilder
.HasDefaultSchema("emailApi") .HasDefaultSchema(MigrationConstants.SchemaName)
.HasAnnotation("ProductVersion", "10.0.7") .HasAnnotation("ProductVersion", "10.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 128); .HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("EmailApi.Data.Entities.EmailTemplateEntity", b => modelBuilder.Entity("Email.Data.Entities.EmailTemplateEntity", b =>
{ {
b.Property<string>("Key") b.Property<string>("Key")
.HasMaxLength(128) .HasMaxLength(128)
@@ -58,7 +58,7 @@ namespace Email.Data.Migrations
b.HasKey("Key", "Language"); b.HasKey("Key", "Language");
b.ToTable("EmailTemplates", "emailApi"); b.ToTable("EmailTemplates", MigrationConstants.SchemaName);
}); });
#pragma warning restore 612, 618 #pragma warning restore 612, 618
} }