1
0
mirror of https://github.com/bitwarden/server synced 2025-12-18 17:23:28 +00:00
Files
server/util/PostgresMigrations/Migrations/20251203004812_AddCipherArchives.cs
jaasen-livefront 3c30168d30 add migrations
2025-12-02 16:49:00 -08:00

28 lines
651 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Bit.PostgresMigrations.Migrations;
/// <inheritdoc />
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");
}
}