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