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.

35 lines
831 B
C#
Raw Normal View History

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