| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using Microsoft.EntityFrameworkCore.Migrations;
-
- #nullable disable
-
- namespace Diligent.WebAPI.Data.Migrations
- {
- public partial class ApplicantUpdate : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<string>(
- name: "Gender",
- table: "Applicants",
- type: "nvarchar(max)",
- nullable: false,
- defaultValue: "");
-
- migrationBuilder.AddColumn<string>(
- name: "ProfessionalQualification",
- table: "Applicants",
- type: "nvarchar(128)",
- maxLength: 128,
- nullable: false,
- defaultValue: "");
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "Gender",
- table: "Applicants");
-
- migrationBuilder.DropColumn(
- name: "ProfessionalQualification",
- table: "Applicants");
- }
- }
- }
|