using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Nuuru.Server.Migrations { /// public partial class AddIsGeoVerificationPending : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsGeoVerificationPending", table: "AspNetUsers", type: "INTEGER", nullable: false, defaultValue: false); migrationBuilder.Sql( """ UPDATE "AspNetUsers" SET "IsGeoVerificationPending" = 1, "Status" = '' WHERE "Status" = 'pending_signup_geo_verification' """); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsGeoVerificationPending", table: "AspNetUsers"); } } }