using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Infrastructure.Persistence.Migrations { /// public partial class AddShipmentBillingFields : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AdminMemo", table: "Shipment", type: "nvarchar(500)", maxLength: 500, nullable: true); migrationBuilder.AddColumn( name: "ShippingFee", table: "Shipment", type: "int", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AdminMemo", table: "Shipment"); migrationBuilder.DropColumn( name: "ShippingFee", table: "Shipment"); } } }