using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations { /// public partial class AddfieldsalaryforcommandReceiver : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Amount", table: "CommandReceivers", type: "double", nullable: true, comment: "เงินเดือน"); migrationBuilder.AddColumn( name: "MouthSalaryAmount", table: "CommandReceivers", type: "double", nullable: true, comment: "เงินค่าตอบแทนรายเดือน"); migrationBuilder.AddColumn( name: "PositionSalaryAmount", table: "CommandReceivers", type: "double", nullable: true, comment: "เงินประจำตำแหน่ง"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Amount", table: "CommandReceivers"); migrationBuilder.DropColumn( name: "MouthSalaryAmount", table: "CommandReceivers"); migrationBuilder.DropColumn( name: "PositionSalaryAmount", table: "CommandReceivers"); } } }