using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bit.PostgresMigrations.Migrations; /// public partial class AddMaxStorageGbIncreasedColumn : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "MaxStorageGbIncreased", table: "User", type: "smallint", nullable: true); migrationBuilder.AddColumn( name: "MaxStorageGbIncreased", table: "Organization", type: "smallint", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "MaxStorageGbIncreased", table: "User"); migrationBuilder.DropColumn( name: "MaxStorageGbIncreased", table: "Organization"); } }