mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Merge branch 'main' into dirt/pm-20574/database_tables_and_scripts_riskinsights
This commit is contained in:
@ -17,6 +17,53 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder.HasAnnotation("ProductVersion", "8.0.8");
|
||||
|
||||
modelBuilder.Entity("Bit.Core.Dirt.Reports.Models.Data.OrganizationMemberBaseDetail", b =>
|
||||
{
|
||||
b.Property<Guid>("CipherId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<Guid?>("CollectionId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("CollectionName")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("Email")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<Guid?>("GroupId")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("GroupName")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<bool?>("HidePasswords")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool?>("Manage")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<bool?>("ReadOnly")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.Property<string>("ResetPasswordKey")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("TwoFactorProviders")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<Guid?>("UserGuid")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("UserName")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<bool>("UsesKeyConnector")
|
||||
.HasColumnType("INTEGER");
|
||||
|
||||
b.ToTable("OrganizationMemberBaseDetails");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Organization", b =>
|
||||
{
|
||||
b.Property<Guid>("Id")
|
||||
|
Reference in New Issue
Block a user