using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace gehGassi.Persistence.Migrations { /// public partial class PayoutEx : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RefundReasonMessage", table: "Payouts", type: "nvarchar(255)", maxLength: 255, nullable: true); migrationBuilder.AddColumn( name: "RefundReasonType", table: "Payouts", type: "nvarchar(255)", maxLength: 255, nullable: true); migrationBuilder.AddColumn( name: "Refunded", table: "Payouts", type: "bit", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RefundReasonMessage", table: "Payouts"); migrationBuilder.DropColumn( name: "RefundReasonType", table: "Payouts"); migrationBuilder.DropColumn( name: "Refunded", table: "Payouts"); } } }