using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class Updatesalary_cylinder : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "monthly_compensation", table: "eva_salary_cylinder", nullable: true); migrationBuilder.AddColumn( name: "position_allowance", table: "eva_salary_cylinder", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "monthly_compensation", table: "eva_salary_cylinder"); migrationBuilder.DropColumn( name: "position_allowance", table: "eva_salary_cylinder"); } } }