|
|
|
@ -13,7 +13,7 @@ using Volo.Abp.EntityFrameworkCore; |
|
|
|
namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
{ |
|
|
|
[DbContext(typeof(UnifiedDbContext))] |
|
|
|
[Migration("20230314024129_Initial")] |
|
|
|
[Migration("20230324070306_Initial")] |
|
|
|
partial class Initial |
|
|
|
{ |
|
|
|
/// <inheritdoc />
|
|
|
|
@ -833,6 +833,33 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host.Migrations |
|
|
|
b.ToTable("AbpUserClaims", (string)null); |
|
|
|
}); |
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserDelegation", b => |
|
|
|
{ |
|
|
|
b.Property<Guid>("Id") |
|
|
|
.ValueGeneratedOnAdd() |
|
|
|
.HasColumnType("uniqueidentifier"); |
|
|
|
|
|
|
|
b.Property<DateTime>("EndTime") |
|
|
|
.HasColumnType("datetime2"); |
|
|
|
|
|
|
|
b.Property<Guid>("SourceUserId") |
|
|
|
.HasColumnType("uniqueidentifier"); |
|
|
|
|
|
|
|
b.Property<DateTime>("StartTime") |
|
|
|
.HasColumnType("datetime2"); |
|
|
|
|
|
|
|
b.Property<Guid>("TargetUserId") |
|
|
|
.HasColumnType("uniqueidentifier"); |
|
|
|
|
|
|
|
b.Property<Guid?>("TenantId") |
|
|
|
.HasColumnType("uniqueidentifier") |
|
|
|
.HasColumnName("TenantId"); |
|
|
|
|
|
|
|
b.HasKey("Id"); |
|
|
|
|
|
|
|
b.ToTable("AbpUserDelegations", (string)null); |
|
|
|
}); |
|
|
|
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b => |
|
|
|
{ |
|
|
|
b.Property<Guid>("UserId") |