using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.PostgresMigrations.Migrations; /// public partial class _20250626_00_AlterOrganizationReportsql : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ContentEncryptionKey", table: "OrganizationReport", type: "text", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "ContentEncryptionKey", table: "OrganizationApplication", type: "text", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ContentEncryptionKey", table: "OrganizationReport"); migrationBuilder.DropColumn( name: "ContentEncryptionKey", table: "OrganizationApplication"); } }