using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Migrations
{
    /// 
    public partial class PendingChanges : Migration
    {
        /// 
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AlterColumn(
                name: "CitizenshipByBirth",
                table: "Applicant",
                type: "character varying(50)",
                unicode: false,
                maxLength: 50,
                nullable: false,
                oldClrType: typeof(string),
                oldType: "character varying(30)",
                oldUnicode: false,
                oldMaxLength: 30);
            migrationBuilder.AlterColumn(
                name: "Citizenship",
                table: "Applicant",
                type: "character varying(50)",
                unicode: false,
                maxLength: 50,
                nullable: false,
                oldClrType: typeof(string),
                oldType: "character varying(30)",
                oldUnicode: false,
                oldMaxLength: 30);
        }
        /// 
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AlterColumn(
                name: "CitizenshipByBirth",
                table: "Applicant",
                type: "character varying(30)",
                unicode: false,
                maxLength: 30,
                nullable: false,
                oldClrType: typeof(string),
                oldType: "character varying(50)",
                oldUnicode: false,
                oldMaxLength: 50);
            migrationBuilder.AlterColumn(
                name: "Citizenship",
                table: "Applicant",
                type: "character varying(30)",
                unicode: false,
                maxLength: 30,
                nullable: false,
                oldClrType: typeof(string),
                oldType: "character varying(50)",
                oldUnicode: false,
                oldMaxLength: 50);
        }
    }
}