using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations.LeaveDb { /// public partial class AddDnaFieldtoLeaveBegging : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Child1DnaId", table: "LeaveBeginnings", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "Child2DnaId", table: "LeaveBeginnings", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "Child3DnaId", table: "LeaveBeginnings", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "Child4DnaId", table: "LeaveBeginnings", type: "char(36)", nullable: true, collation: "ascii_general_ci"); migrationBuilder.AddColumn( name: "RootDnaId", table: "LeaveBeginnings", type: "char(36)", nullable: true, collation: "ascii_general_ci"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Child1DnaId", table: "LeaveBeginnings"); migrationBuilder.DropColumn( name: "Child2DnaId", table: "LeaveBeginnings"); migrationBuilder.DropColumn( name: "Child3DnaId", table: "LeaveBeginnings"); migrationBuilder.DropColumn( name: "Child4DnaId", table: "LeaveBeginnings"); migrationBuilder.DropColumn( name: "RootDnaId", table: "LeaveBeginnings"); } } }