You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
831 B
34 lines
831 B
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"); |
|
} |
|
}
|
|
|