1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/util/MySqlMigrations/Migrations/20230124132226_KDFOptions.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
933 B
C#
Raw Normal View History

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.MySqlMigrations.Migrations
{
public partial class KDFOptions : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "KdfMemory",
table: "User",
type: "int",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "KdfParallelism",
table: "User",
type: "int",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "KdfMemory",
table: "User");
migrationBuilder.DropColumn(
name: "KdfParallelism",
table: "User");
}
}
}