1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

fix lint issues and sql csproj (#2627)

This commit is contained in:
Kyle Spearrin
2023-01-25 12:44:32 -05:00
committed by GitHub
parent 64c15ed8cd
commit 7c55d56561
4 changed files with 75 additions and 72 deletions

View File

@ -2,34 +2,33 @@
#nullable disable
namespace Bit.PostgresMigrations.Migrations
namespace Bit.PostgresMigrations.Migrations;
public partial class KDFOptions : Migration
{
public partial class KDFOptions : Migration
protected override void Up(MigrationBuilder migrationBuilder)
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "KdfMemory",
table: "User",
type: "integer",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "KdfMemory",
table: "User",
type: "integer",
nullable: true);
migrationBuilder.AddColumn<int>(
name: "KdfParallelism",
table: "User",
type: "integer",
nullable: true);
}
migrationBuilder.AddColumn<int>(
name: "KdfParallelism",
table: "User",
type: "integer",
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "KdfMemory",
table: "User");
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "KdfMemory",
table: "User");
migrationBuilder.DropColumn(
name: "KdfParallelism",
table: "User");
}
migrationBuilder.DropColumn(
name: "KdfParallelism",
table: "User");
}
}