using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MTWorkHR.Infrastructure.Migrations { /// <inheritdoc /> public partial class altrOrderAttach : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AttachmentTypeId", table: "OrderAttachment"); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<long>( name: "AttachmentTypeId", table: "OrderAttachment", type: "bigint", nullable: true); } } }