|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(UnifiedDbContext))] |
|
|
|
[Migration("20250310031538_Initial")] |
|
|
|
[Migration("20250611122311_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -22,7 +22,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
#pragma warning disable 612, 618
|
|
|
|
modelBuilder |
|
|
|
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.SqlServer) |
|
|
|
.HasAnnotation("ProductVersion", "9.0.2") |
|
|
|
.HasAnnotation("ProductVersion", "9.0.5") |
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128); |
|
|
|
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); |
|
|
|
@ -199,6 +199,34 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
b.ToTable("AbpAuditLogActions", (string)null); |
|
|
|
}); |
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogExcelFile", b => |
|
|
|
{ |
|
|
|
b.Property<Guid>("Id") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("uniqueidentifier"); |
|
|
|
|
|
|
|
b.Property<DateTime>("CreationTime") |
|
|
|
.HasColumnType("datetime2") |
|
|
|
.HasColumnName("CreationTime"); |
|
|
|
|
|
|
|
b.Property<Guid?>("CreatorId") |
|
|
|
.HasColumnType("uniqueidentifier") |
|
|
|
.HasColumnName("CreatorId"); |
|
|
|
|
|
|
|
b.Property<string>("FileName") |
|
|
|
.HasMaxLength(256) |
|
|
|
.HasColumnType("nvarchar(256)") |
|
|
|
.HasColumnName("FileName"); |
|
|
|
|
|
|
|
b.Property<Guid?>("TenantId") |
|
|
|
.HasColumnType("uniqueidentifier") |
|
|
|
.HasColumnName("TenantId"); |
|
|
|
|
|
|
|
b.HasKey("Id"); |
|
|
|
|
|
|
|
b.ToTable("AbpAuditLogExcelFiles", (string)null); |
|
|
|
}); |
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b => |
|
|
|
{ |
|
|
|
b.Property<Guid>("Id") |