using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MTWorkHR.Infrastructure.Migrations { /// <inheritdoc /> public partial class altrAllocationContractId : Migration { /// <inheritdoc /> protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn<long>( name: "ContractId", table: "OrderAllocations", type: "bigint", nullable: false, defaultValue: 0L); } /// <inheritdoc /> protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ContractId", table: "OrderAllocations"); } } }