using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.SqliteMigrations.Migrations;
///
public partial class _20250609_00_AddMemberAccessReportStoreProceduresql : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "OrganizationMemberBaseDetails",
columns: table => new
{
UserGuid = table.Column(type: "TEXT", nullable: true),
UserName = table.Column(type: "TEXT", nullable: true),
Email = table.Column(type: "TEXT", nullable: true),
TwoFactorProviders = table.Column(type: "TEXT", nullable: true),
UsesKeyConnector = table.Column(type: "INTEGER", nullable: false),
ResetPasswordKey = table.Column(type: "TEXT", nullable: true),
CollectionId = table.Column(type: "TEXT", nullable: true),
GroupId = table.Column(type: "TEXT", nullable: true),
GroupName = table.Column(type: "TEXT", nullable: true),
CollectionName = table.Column(type: "TEXT", nullable: true),
ReadOnly = table.Column(type: "INTEGER", nullable: true),
HidePasswords = table.Column(type: "INTEGER", nullable: true),
Manage = table.Column(type: "INTEGER", nullable: true),
CipherId = table.Column(type: "TEXT", nullable: false)
},
constraints: table =>
{
});
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OrganizationMemberBaseDetails");
}
}