|
|
|
@ -11,7 +11,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(MyProjectNameMigrationsDbContext))] |
|
|
|
[Migration("20210324094537_Initial")] |
|
|
|
[Migration("20210528093337_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder) |
|
|
|
@ -20,7 +20,7 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
modelBuilder |
|
|
|
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) |
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128) |
|
|
|
.HasAnnotation("ProductVersion", "5.0.4") |
|
|
|
.HasAnnotation("ProductVersion", "5.0.6") |
|
|
|
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); |
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b => |
|
|
|
@ -71,9 +71,7 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
.HasColumnName("CorrelationId"); |
|
|
|
|
|
|
|
b.Property<string>("Exceptions") |
|
|
|
.HasMaxLength(4000) |
|
|
|
.HasColumnType("nvarchar(4000)") |
|
|
|
.HasColumnName("Exceptions"); |
|
|
|
.HasColumnType("nvarchar(max)"); |
|
|
|
|
|
|
|
b.Property<int>("ExecutionDuration") |
|
|
|
.HasColumnType("int") |