mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
36 lines
933 B
C#
36 lines
933 B
C#
|
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|