diff --git a/util/PostgresMigrations/HelperScripts/2024-02-16_00_AccessAllCollectionGroups.psql b/util/PostgresMigrations/HelperScripts/2024-02-16_00_AccessAllCollectionGroups.psql
deleted file mode 100644
index ad940f4677..0000000000
--- a/util/PostgresMigrations/HelperScripts/2024-02-16_00_AccessAllCollectionGroups.psql
+++ /dev/null
@@ -1,47 +0,0 @@
--- Step 1: Create a temporary table to store the groups with AccessAll = 1
-CREATE TEMP TABLE IF NOT EXISTS TempGroup AS
-SELECT "Id" AS "GroupId", "OrganizationId"
-FROM "Group"
-WHERE "AccessAll" = true;
-
--- Step 2: Create a temporary table to store distinct OrganizationUserIds
-CREATE TEMP TABLE IF NOT EXISTS TempOrganizationUsers AS
-SELECT DISTINCT GU."OrganizationUserId"
-FROM "GroupUser" GU
-JOIN TempGroup TG ON GU."GroupId" = TG."GroupId";
-
--- Step 3: Update existing rows in "CollectionGroups"
-UPDATE "CollectionGroups" CG
-SET
- "ReadOnly" = false,
- "HidePasswords" = false,
- "Manage" = false
-FROM "CollectionGroups" CGUpdate
-INNER JOIN "Collection" C ON CGUpdate."CollectionId" = C."Id"
-INNER JOIN TempGroup TG ON CGUpdate."GroupId" = TG."GroupId"
-WHERE C."OrganizationId" = TG."OrganizationId";
-
--- Step 4: Insert new rows into "CollectionGroups"
-INSERT INTO "CollectionGroups" ("CollectionId", "GroupId", "ReadOnly", "HidePasswords", "Manage")
-SELECT C."Id", TG."GroupId", false, false, false
-FROM "Collection" C
-INNER JOIN TempGroup TG ON C."OrganizationId" = TG."OrganizationId"
-LEFT JOIN "CollectionGroups" CG ON CG."CollectionId" = C."Id" AND CG."GroupId" = TG."GroupId"
-WHERE CG."CollectionId" IS NULL;
-
--- Step 5: Update Group to clear AccessAll flag
-UPDATE "Group" G
-SET "AccessAll" = false, "RevisionDate" = current_timestamp
-FROM TempGroup TG
-WHERE G."Id" = TG."GroupId";
-
--- Step 6: Update User AccountRevisionDate for each unique OrganizationUserId
-UPDATE "User" U
-SET "AccountRevisionDate" = current_timestamp
-FROM "OrganizationUser" OU
-JOIN TempOrganizationUsers TOU ON OU."Id" = TOU."OrganizationUserId"
-WHERE U."Id" = OU."UserId" AND OU."Status" = 2;
-
--- Step 7: Drop the temporary tables
-DROP TABLE IF EXISTS TempGroup;
-DROP TABLE IF EXISTS TempOrganizationUsers;
diff --git a/util/PostgresMigrations/HelperScripts/2024-02-16_01_AccessAllCollectionUsers.psql b/util/PostgresMigrations/HelperScripts/2024-02-16_01_AccessAllCollectionUsers.psql
deleted file mode 100644
index 4e9a659114..0000000000
--- a/util/PostgresMigrations/HelperScripts/2024-02-16_01_AccessAllCollectionUsers.psql
+++ /dev/null
@@ -1,43 +0,0 @@
--- Step 1: Create a temporary table
-CREATE TEMP TABLE IF NOT EXISTS TempOrgUser AS
-SELECT "Id" AS "OrganizationUserId", "OrganizationId"
-FROM "OrganizationUser"
-WHERE "AccessAll" = true;
-
--- Step 2: Update existing rows in CollectionUsers
-UPDATE "CollectionUsers" cu
-SET
- "ReadOnly" = false,
- "HidePasswords" = false,
- "Manage" = false
-FROM "CollectionUsers" cuUpdate
-INNER JOIN "Collection" C ON cuUpdate."CollectionId" = C."Id"
-INNER JOIN TempOrgUser OU ON cuUpdate."OrganizationUserId" = OU."OrganizationUserId"
-WHERE C."OrganizationId" = OU."OrganizationId";
-
--- Step 3: Insert new rows into CollectionUsers
-INSERT INTO "CollectionUsers" ("CollectionId", "OrganizationUserId", "ReadOnly", "HidePasswords", "Manage")
-SELECT C."Id" AS "CollectionId", OU."OrganizationUserId", false, false, false
-FROM "Collection" AS C
-INNER JOIN TempOrgUser AS OU ON C."OrganizationId" = OU."OrganizationId"
-WHERE NOT EXISTS (
- SELECT 1
- FROM "CollectionUsers" AS CU
- WHERE CU."CollectionId" = C."Id" AND CU."OrganizationUserId" = OU."OrganizationUserId"
-);
-
--- Step 4: Update OrganizationUser to clear AccessAll flag
-UPDATE "OrganizationUser" AS OU
-SET "AccessAll" = false
-FROM TempOrgUser AS T
-WHERE OU."Id" = T."OrganizationUserId";
-
--- Step 5: Update "User" AccountRevisionDate for each unique OrganizationUserId
-UPDATE "User" AS U
-SET "AccountRevisionDate" = current_timestamp
-FROM "OrganizationUser" AS OU
-JOIN TempOrgUser AS TOU ON OU."Id" = TOU."OrganizationUserId"
-WHERE U."Id" = OU."UserId" AND OU."Status" = 2;
-
--- Step 6: Drop the temporary table
-DROP TABLE IF EXISTS TempOrgUser;
diff --git a/util/PostgresMigrations/HelperScripts/2024-02-16_02_ManagersEditAssignedCollectionUsers.psql b/util/PostgresMigrations/HelperScripts/2024-02-16_02_ManagersEditAssignedCollectionUsers.psql
deleted file mode 100644
index 2eaa4f03f5..0000000000
--- a/util/PostgresMigrations/HelperScripts/2024-02-16_02_ManagersEditAssignedCollectionUsers.psql
+++ /dev/null
@@ -1,80 +0,0 @@
--- Step 1: Update `CollectionUser` with `Manage` = 1 for all users with Manager role or 'EditAssignedCollections' permission
- -- Create a temporary table
- CREATE TEMP TABLE IF NOT EXISTS TempOrgUser AS
- SELECT ou."Id" AS "OrganizationUserId"
- FROM "OrganizationUser" ou
- WHERE (ou."Type" = 3 OR
- (ou."Permissions" IS NOT NULL AND
- ((ou."Permissions"::text)::jsonb->>'editAssignedCollections') = 'true'));
-
- -- Update CollectionUsers with Manage = 1 using the temporary table
- UPDATE "CollectionUsers" cu
- SET
- "ReadOnly" = false,
- "HidePasswords" = false,
- "Manage" = true
- FROM TempOrgUser temp
- WHERE cu."OrganizationUserId" = temp."OrganizationUserId";
-
- -- Update `User` AccountRevisionDate for each unique OrganizationUserId
- UPDATE "User" AS U
- SET "AccountRevisionDate" = current_timestamp
- FROM "OrganizationUser" AS OU
- JOIN TempOrgUser AS TOU ON OU."Id" = TOU."OrganizationUserId"
- WHERE OU."Status" = 2 AND U."Id" = OU."UserId";
-
- -- Drop the temporary table
- DROP TABLE IF EXISTS TempOrgUser;
-
--- Step 2: Insert rows to CollectionUser for Managers and users with 'EditAssignedCollections' permission assigned to groups with collection access
- -- Store the results in a temporary table
- CREATE TEMP TABLE IF NOT EXISTS TempCol AS
- SELECT cg."CollectionId", ou."Id" AS "OrganizationUserId"
- FROM "CollectionGroups" cg
- INNER JOIN "GroupUser" gu ON cg."GroupId" = gu."GroupId"
- INNER JOIN "OrganizationUser" ou ON gu."OrganizationUserId" = ou."Id"
- WHERE (ou."Type" = 3 OR
- (ou."Permissions" IS NOT NULL AND
- ((ou."Permissions"::text)::jsonb->>'editAssignedCollections') = 'true'))
- AND NOT EXISTS (
- SELECT 1 FROM "CollectionUsers" cu
- WHERE cu."CollectionId" = cg."CollectionId" AND cu."OrganizationUserId" = ou."Id"
- );
-
- -- Insert rows into CollectionUsers using the temporary table
- INSERT INTO "CollectionUsers" ("CollectionId", "OrganizationUserId", "ReadOnly", "HidePasswords", "Manage")
- SELECT "CollectionId", "OrganizationUserId", false, false, true
- FROM TempCol;
-
- -- Update `User` AccountRevisionDate for each unique OrganizationUserId
- UPDATE "User" AS U
- SET "AccountRevisionDate" = current_timestamp
- FROM "OrganizationUser" AS OU
- JOIN TempCol AS TC ON OU."Id" = TC."OrganizationUserId"
- WHERE OU."Status" = 2 AND U."Id" = OU."UserId";
-
- -- Drop the temporary table
- DROP TABLE IF EXISTS TempCol;
-
--- Step 3: Set all Managers to Users
- -- Create a temporary table
- CREATE TEMP TABLE IF NOT EXISTS TempOrgUser AS
- SELECT ou."Id" AS "OrganizationUserId"
- FROM "OrganizationUser" ou
- WHERE ou."Type" = 3;
-
- -- Update OrganizationUser with Type = 2 using the temporary table
- UPDATE "OrganizationUser" ou
- SET "Type" = 2
- FROM TempOrgUser temp
- WHERE ou."Id" = temp."OrganizationUserId";
-
- -- Update `User` AccountRevisionDate for each unique OrganizationUserId
- UPDATE "User" AS U
- SET "AccountRevisionDate" = current_timestamp
- FROM "OrganizationUser" AS OU
- JOIN TempOrgUser AS TOU ON OU."Id" = TOU."OrganizationUserId"
- WHERE OU."Status" = 2 AND U."Id" = OU."UserId";
-
- -- Drop the temporary table
- DROP TABLE IF EXISTS TempOrgUser;
diff --git a/util/PostgresMigrations/HelperScripts/2024-02-16_03_EnableOrgsFlexibleCollections.psql b/util/PostgresMigrations/HelperScripts/2024-02-16_03_EnableOrgsFlexibleCollections.psql
deleted file mode 100644
index 6d22d57833..0000000000
--- a/util/PostgresMigrations/HelperScripts/2024-02-16_03_EnableOrgsFlexibleCollections.psql
+++ /dev/null
@@ -1,4 +0,0 @@
--- Set "FlexibleCollections" = true for all organizations that have not yet been migrated.
-UPDATE "Organization"
-SET "FlexibleCollections" = true
-WHERE "FlexibleCollections" = false;
diff --git a/util/PostgresMigrations/Migrations/20240216131303_FCAccessAllCollectionGroups.Designer.cs b/util/PostgresMigrations/Migrations/20240216131303_FCAccessAllCollectionGroups.Designer.cs
deleted file mode 100644
index fc0cbacb69..0000000000
--- a/util/PostgresMigrations/Migrations/20240216131303_FCAccessAllCollectionGroups.Designer.cs
+++ /dev/null
@@ -1,2410 +0,0 @@
-//
-using System;
-using Bit.Infrastructure.EntityFramework.Repositories;
-using Microsoft.EntityFrameworkCore;
-using Microsoft.EntityFrameworkCore.Infrastructure;
-using Microsoft.EntityFrameworkCore.Migrations;
-using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
-using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
-
-#nullable disable
-
-namespace Bit.PostgresMigrations.Migrations
-{
- [DbContext(typeof(DatabaseContext))]
- [Migration("20240216131303_FCAccessAllCollectionGroups")]
- partial class FCAccessAllCollectionGroups
- {
- ///
- protected override void BuildTargetModel(ModelBuilder modelBuilder)
- {
-#pragma warning disable 612, 618
- modelBuilder
- .HasAnnotation("Npgsql:CollationDefinition:postgresIndetermanisticCollation", "en-u-ks-primary,en-u-ks-primary,icu,False")
- .HasAnnotation("ProductVersion", "7.0.15")
- .HasAnnotation("Relational:MaxIdentifierLength", 63);
-
- NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Organization", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("AllowAdminAccessToAllCollectionItems")
- .HasColumnType("boolean")
- .HasDefaultValue(true);
-
- b.Property("BillingEmail")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("BusinessAddress1")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("BusinessAddress2")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("BusinessAddress3")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("BusinessCountry")
- .HasMaxLength(2)
- .HasColumnType("character varying(2)");
-
- b.Property("BusinessName")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("BusinessTaxNumber")
- .HasMaxLength(30)
- .HasColumnType("character varying(30)");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("ExpirationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("FlexibleCollections")
- .HasColumnType("boolean");
-
- b.Property("Gateway")
- .HasColumnType("smallint");
-
- b.Property("GatewayCustomerId")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("GatewaySubscriptionId")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("Identifier")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)")
- .UseCollation("postgresIndetermanisticCollation");
-
- b.Property("LicenseKey")
- .HasMaxLength(100)
- .HasColumnType("character varying(100)");
-
- b.Property("LimitCollectionCreationDeletion")
- .HasColumnType("boolean")
- .HasDefaultValue(true);
-
- b.Property("MaxAutoscaleSeats")
- .HasColumnType("integer");
-
- b.Property("MaxAutoscaleSmSeats")
- .HasColumnType("integer");
-
- b.Property("MaxAutoscaleSmServiceAccounts")
- .HasColumnType("integer");
-
- b.Property("MaxCollections")
- .HasColumnType("smallint");
-
- b.Property("MaxStorageGb")
- .HasColumnType("smallint");
-
- b.Property("Name")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("OwnersNotifiedOfAutoscaling")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Plan")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("PlanType")
- .HasColumnType("smallint");
-
- b.Property("PrivateKey")
- .HasColumnType("text");
-
- b.Property("PublicKey")
- .HasColumnType("text");
-
- b.Property("ReferenceData")
- .HasColumnType("text");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Seats")
- .HasColumnType("integer");
-
- b.Property("SelfHost")
- .HasColumnType("boolean");
-
- b.Property("SmSeats")
- .HasColumnType("integer");
-
- b.Property("SmServiceAccounts")
- .HasColumnType("integer");
-
- b.Property("Status")
- .HasColumnType("smallint");
-
- b.Property("Storage")
- .HasColumnType("bigint");
-
- b.Property("TwoFactorProviders")
- .HasColumnType("text");
-
- b.Property("Use2fa")
- .HasColumnType("boolean");
-
- b.Property("UseApi")
- .HasColumnType("boolean");
-
- b.Property("UseCustomPermissions")
- .HasColumnType("boolean");
-
- b.Property("UseDirectory")
- .HasColumnType("boolean");
-
- b.Property("UseEvents")
- .HasColumnType("boolean");
-
- b.Property("UseGroups")
- .HasColumnType("boolean");
-
- b.Property("UseKeyConnector")
- .HasColumnType("boolean");
-
- b.Property("UsePasswordManager")
- .HasColumnType("boolean");
-
- b.Property("UsePolicies")
- .HasColumnType("boolean");
-
- b.Property("UseResetPassword")
- .HasColumnType("boolean");
-
- b.Property("UseScim")
- .HasColumnType("boolean");
-
- b.Property("UseSecretsManager")
- .HasColumnType("boolean");
-
- b.Property("UseSso")
- .HasColumnType("boolean");
-
- b.Property("UseTotp")
- .HasColumnType("boolean");
-
- b.Property("UsersGetPremium")
- .HasColumnType("boolean");
-
- b.HasKey("Id");
-
- b.HasIndex("Id", "Enabled");
-
- NpgsqlIndexBuilderExtensions.IncludeProperties(b.HasIndex("Id", "Enabled"), new[] { "UseTotp" });
-
- b.ToTable("Organization", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Policy", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Data")
- .HasColumnType("text");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.HasIndex("OrganizationId", "Type")
- .IsUnique()
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.ToTable("Policy", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Provider.Provider", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("BillingEmail")
- .HasColumnType("text");
-
- b.Property("BillingPhone")
- .HasColumnType("text");
-
- b.Property("BusinessAddress1")
- .HasColumnType("text");
-
- b.Property("BusinessAddress2")
- .HasColumnType("text");
-
- b.Property("BusinessAddress3")
- .HasColumnType("text");
-
- b.Property("BusinessCountry")
- .HasColumnType("text");
-
- b.Property("BusinessName")
- .HasColumnType("text");
-
- b.Property("BusinessTaxNumber")
- .HasColumnType("text");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("Name")
- .HasColumnType("text");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Status")
- .HasColumnType("smallint");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.Property("UseEvents")
- .HasColumnType("boolean");
-
- b.HasKey("Id");
-
- b.ToTable("Provider", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Provider.ProviderOrganization", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Key")
- .HasColumnType("text");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("ProviderId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Settings")
- .HasColumnType("text");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.HasIndex("ProviderId");
-
- b.ToTable("ProviderOrganization", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.AdminConsole.Models.Provider.ProviderUser", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Email")
- .HasColumnType("text");
-
- b.Property("Key")
- .HasColumnType("text");
-
- b.Property("Permissions")
- .HasColumnType("text");
-
- b.Property("ProviderId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Status")
- .HasColumnType("smallint");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("ProviderId");
-
- b.HasIndex("UserId");
-
- b.ToTable("ProviderUser", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.AuthRequest", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("AccessCode")
- .HasMaxLength(25)
- .HasColumnType("character varying(25)");
-
- b.Property("Approved")
- .HasColumnType("boolean");
-
- b.Property("AuthenticationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Key")
- .HasColumnType("text");
-
- b.Property("MasterPasswordHash")
- .HasColumnType("text");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("PublicKey")
- .HasColumnType("text");
-
- b.Property("RequestDeviceIdentifier")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("RequestDeviceType")
- .HasColumnType("smallint");
-
- b.Property("RequestIpAddress")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("ResponseDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("ResponseDeviceId")
- .HasColumnType("uuid");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.HasIndex("ResponseDeviceId");
-
- b.HasIndex("UserId");
-
- b.ToTable("AuthRequest", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.EmergencyAccess", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Email")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("GranteeId")
- .HasColumnType("uuid");
-
- b.Property("GrantorId")
- .HasColumnType("uuid");
-
- b.Property("KeyEncrypted")
- .HasColumnType("text");
-
- b.Property("LastNotificationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("RecoveryInitiatedDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Status")
- .HasColumnType("smallint");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.Property("WaitTimeDays")
- .HasColumnType("integer");
-
- b.HasKey("Id");
-
- b.HasIndex("GranteeId");
-
- b.HasIndex("GrantorId");
-
- b.ToTable("EmergencyAccess", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.Grant", b =>
- {
- b.Property("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("integer");
-
- NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
-
- b.Property("ClientId")
- .IsRequired()
- .HasMaxLength(200)
- .HasColumnType("character varying(200)");
-
- b.Property("ConsumedDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Data")
- .IsRequired()
- .HasColumnType("text");
-
- b.Property("Description")
- .HasMaxLength(200)
- .HasColumnType("character varying(200)");
-
- b.Property("ExpirationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Key")
- .IsRequired()
- .HasMaxLength(200)
- .HasColumnType("character varying(200)");
-
- b.Property("SessionId")
- .HasMaxLength(100)
- .HasColumnType("character varying(100)");
-
- b.Property("SubjectId")
- .HasMaxLength(200)
- .HasColumnType("character varying(200)");
-
- b.Property("Type")
- .IsRequired()
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.HasKey("Id")
- .HasName("PK_Grant")
- .HasAnnotation("SqlServer:Clustered", true);
-
- b.HasIndex("ExpirationDate")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.HasIndex("Key")
- .IsUnique();
-
- b.ToTable("Grant", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.SsoConfig", b =>
- {
- b.Property("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
-
- NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Data")
- .HasColumnType("text");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("SsoConfig", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.SsoUser", b =>
- {
- b.Property("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("bigint");
-
- NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id"));
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("ExternalId")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)")
- .UseCollation("postgresIndetermanisticCollation");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.HasIndex("UserId");
-
- b.HasIndex("OrganizationId", "ExternalId")
- .IsUnique()
- .HasAnnotation("SqlServer:Clustered", false);
-
- NpgsqlIndexBuilderExtensions.IncludeProperties(b.HasIndex("OrganizationId", "ExternalId"), new[] { "UserId" });
-
- b.HasIndex("OrganizationId", "UserId")
- .IsUnique()
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.ToTable("SsoUser", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Auth.Models.WebAuthnCredential", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("AaGuid")
- .HasColumnType("uuid");
-
- b.Property("Counter")
- .HasColumnType("integer");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("CredentialId")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("EncryptedPrivateKey")
- .HasMaxLength(2000)
- .HasColumnType("character varying(2000)");
-
- b.Property("EncryptedPublicKey")
- .HasMaxLength(2000)
- .HasColumnType("character varying(2000)");
-
- b.Property("EncryptedUserKey")
- .HasMaxLength(2000)
- .HasColumnType("character varying(2000)");
-
- b.Property("Name")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("PublicKey")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("SupportsPrf")
- .HasColumnType("boolean");
-
- b.Property("Type")
- .HasMaxLength(20)
- .HasColumnType("character varying(20)");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("UserId");
-
- b.ToTable("WebAuthnCredential", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Collection", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("ExternalId")
- .HasMaxLength(300)
- .HasColumnType("character varying(300)");
-
- b.Property("Name")
- .HasColumnType("text");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("Collection", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionCipher", b =>
- {
- b.Property("CollectionId")
- .HasColumnType("uuid");
-
- b.Property("CipherId")
- .HasColumnType("uuid");
-
- b.HasKey("CollectionId", "CipherId");
-
- b.HasIndex("CipherId");
-
- b.ToTable("CollectionCipher", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionGroup", b =>
- {
- b.Property("CollectionId")
- .HasColumnType("uuid");
-
- b.Property("GroupId")
- .HasColumnType("uuid");
-
- b.Property("HidePasswords")
- .HasColumnType("boolean");
-
- b.Property("Manage")
- .HasColumnType("boolean");
-
- b.Property("ReadOnly")
- .HasColumnType("boolean");
-
- b.HasKey("CollectionId", "GroupId");
-
- b.HasIndex("GroupId");
-
- b.ToTable("CollectionGroups");
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.CollectionUser", b =>
- {
- b.Property("CollectionId")
- .HasColumnType("uuid");
-
- b.Property("OrganizationUserId")
- .HasColumnType("uuid");
-
- b.Property("HidePasswords")
- .HasColumnType("boolean");
-
- b.Property("Manage")
- .HasColumnType("boolean");
-
- b.Property("ReadOnly")
- .HasColumnType("boolean");
-
- b.HasKey("CollectionId", "OrganizationUserId");
-
- b.HasIndex("OrganizationUserId");
-
- b.ToTable("CollectionUsers");
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Device", b =>
- {
- b.Property("Id")
- .ValueGeneratedOnAdd()
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("EncryptedPrivateKey")
- .HasColumnType("text");
-
- b.Property("EncryptedPublicKey")
- .HasColumnType("text");
-
- b.Property("EncryptedUserKey")
- .HasColumnType("text");
-
- b.Property("Identifier")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("Name")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("PushToken")
- .HasMaxLength(255)
- .HasColumnType("character varying(255)");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("Identifier")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.HasIndex("UserId")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.HasIndex("UserId", "Identifier")
- .IsUnique()
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.ToTable("Device", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Event", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("ActingUserId")
- .HasColumnType("uuid");
-
- b.Property("CipherId")
- .HasColumnType("uuid");
-
- b.Property("CollectionId")
- .HasColumnType("uuid");
-
- b.Property("Date")
- .HasColumnType("timestamp with time zone");
-
- b.Property("DeviceType")
- .HasColumnType("smallint");
-
- b.Property("DomainName")
- .HasColumnType("text");
-
- b.Property("GroupId")
- .HasColumnType("uuid");
-
- b.Property("InstallationId")
- .HasColumnType("uuid");
-
- b.Property("IpAddress")
- .HasMaxLength(50)
- .HasColumnType("character varying(50)");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("OrganizationUserId")
- .HasColumnType("uuid");
-
- b.Property("PolicyId")
- .HasColumnType("uuid");
-
- b.Property("ProviderId")
- .HasColumnType("uuid");
-
- b.Property("ProviderOrganizationId")
- .HasColumnType("uuid");
-
- b.Property("ProviderUserId")
- .HasColumnType("uuid");
-
- b.Property("SecretId")
- .HasColumnType("uuid");
-
- b.Property("ServiceAccountId")
- .HasColumnType("uuid");
-
- b.Property("SystemUser")
- .HasColumnType("smallint");
-
- b.Property("Type")
- .HasColumnType("integer");
-
- b.Property("UserId")
- .HasColumnType("uuid");
-
- b.HasKey("Id");
-
- b.HasIndex("Date", "OrganizationId", "ActingUserId", "CipherId")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.ToTable("Event", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Group", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("AccessAll")
- .HasColumnType("boolean");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("ExternalId")
- .HasMaxLength(300)
- .HasColumnType("character varying(300)");
-
- b.Property("Name")
- .HasMaxLength(100)
- .HasColumnType("character varying(100)");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("Group", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.GroupUser", b =>
- {
- b.Property("GroupId")
- .HasColumnType("uuid");
-
- b.Property("OrganizationUserId")
- .HasColumnType("uuid");
-
- b.HasKey("GroupId", "OrganizationUserId");
-
- b.HasIndex("OrganizationUserId");
-
- b.ToTable("GroupUser", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.Installation", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Email")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("Key")
- .HasMaxLength(150)
- .HasColumnType("character varying(150)");
-
- b.HasKey("Id");
-
- b.ToTable("Installation", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationApiKey", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("ApiKey")
- .HasMaxLength(30)
- .HasColumnType("character varying(30)");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("RevisionDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("OrganizationApiKey", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationConnection", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("Config")
- .HasColumnType("text");
-
- b.Property("Enabled")
- .HasColumnType("boolean");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("Type")
- .HasColumnType("smallint");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("OrganizationConnection", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationDomain", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("CreationDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("DomainName")
- .HasMaxLength(255)
- .HasColumnType("character varying(255)");
-
- b.Property("JobRunCount")
- .HasColumnType("integer");
-
- b.Property("LastCheckedDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("NextRunDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("OrganizationId")
- .HasColumnType("uuid");
-
- b.Property("Txt")
- .HasColumnType("text");
-
- b.Property("VerifiedDate")
- .HasColumnType("timestamp with time zone");
-
- b.HasKey("Id");
-
- b.HasIndex("OrganizationId");
-
- b.ToTable("OrganizationDomain", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationSponsorship", b =>
- {
- b.Property("Id")
- .HasColumnType("uuid");
-
- b.Property("FriendlyName")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("LastSyncDate")
- .HasColumnType("timestamp with time zone");
-
- b.Property("OfferedToEmail")
- .HasMaxLength(256)
- .HasColumnType("character varying(256)");
-
- b.Property("PlanSponsorshipType")
- .HasColumnType("smallint");
-
- b.Property("SponsoredOrganizationId")
- .HasColumnType("uuid");
-
- b.Property("SponsoringOrganizationId")
- .HasColumnType("uuid");
-
- b.Property("SponsoringOrganizationUserId")
- .HasColumnType("uuid");
-
- b.Property("ToDelete")
- .HasColumnType("boolean");
-
- b.Property("ValidUntil")
- .HasColumnType("timestamp with time zone");
-
- b.HasKey("Id");
-
- b.HasIndex("SponsoredOrganizationId");
-
- b.HasIndex("SponsoringOrganizationId");
-
- b.HasIndex("SponsoringOrganizationUserId")
- .HasAnnotation("SqlServer:Clustered", false);
-
- b.ToTable("OrganizationSponsorship", (string)null);
- });
-
- modelBuilder.Entity("Bit.Infrastructure.EntityFramework.Models.OrganizationUser", b =>
- {
- b.Property