using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CampusErrand.Migrations
{
///
public partial class AddTransferFieldsToWithdrawal : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "PackageInfo",
table: "Withdrawals",
type: "nvarchar(512)",
maxLength: 512,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "TransferBillNo",
table: "Withdrawals",
type: "nvarchar(64)",
maxLength: 64,
nullable: false,
defaultValue: "");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PackageInfo",
table: "Withdrawals");
migrationBuilder.DropColumn(
name: "TransferBillNo",
table: "Withdrawals");
}
}
}