1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 04:03:25 +00:00
This commit is contained in:
jaasen-livefront
2025-12-03 10:03:28 -08:00
parent 52d31b83b9
commit bf2f3c039d
5 changed files with 26 additions and 8 deletions

View File

@@ -10,12 +10,18 @@ public partial class AddCipherArchives : Migration
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Archives",
table: "Cipher",
type: "text",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Archives",
table: "Cipher");
}
}