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.
44 lines
1.1 KiB
44 lines
1.1 KiB
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
#nullable disable |
|
|
|
namespace Bit.PostgresMigrations.Migrations; |
|
|
|
public partial class AddKeysToDevice : Migration |
|
{ |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.AddColumn<string>( |
|
name: "EncryptedPrivateKey", |
|
table: "Device", |
|
type: "text", |
|
nullable: true); |
|
|
|
migrationBuilder.AddColumn<string>( |
|
name: "EncryptedPublicKey", |
|
table: "Device", |
|
type: "text", |
|
nullable: true); |
|
|
|
migrationBuilder.AddColumn<string>( |
|
name: "EncryptedUserKey", |
|
table: "Device", |
|
type: "text", |
|
nullable: true); |
|
} |
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropColumn( |
|
name: "EncryptedPrivateKey", |
|
table: "Device"); |
|
|
|
migrationBuilder.DropColumn( |
|
name: "EncryptedPublicKey", |
|
table: "Device"); |
|
|
|
migrationBuilder.DropColumn( |
|
name: "EncryptedUserKey", |
|
table: "Device"); |
|
} |
|
}
|
|
|