From 7ab509cc214ad56c35bed4e637cdc232df343557 Mon Sep 17 00:00:00 2001 From: Engincan VESKE Date: Fri, 8 Oct 2021 13:51:34 +0300 Subject: [PATCH] Set default value as true for "IsActive" property in migration --- .../Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs b/src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs index c642516..2898bd8 100644 --- a/src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs +++ b/src/EventHub.EntityFrameworkCore/Migrations/20211008103457_Added_IsActive_To_IdentityUser.cs @@ -288,7 +288,7 @@ namespace EventHub.Migrations table: "AbpUsers", type: "boolean", nullable: false, - defaultValue: false); + defaultValue: true); migrationBuilder.AlterColumn( name: "CreationTime",