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