From 18168a95f33f28f8fa508ab80a652289b82f2905 Mon Sep 17 00:00:00 2001 From: Ebicoglu Date: Wed, 6 Oct 2021 13:49:07 +0300 Subject: [PATCH] Update Abp-5_0.md --- docs/en/Migration-Guides/Abp-5_0.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en/Migration-Guides/Abp-5_0.md b/docs/en/Migration-Guides/Abp-5_0.md index 90abe4e6dc..1c8604b214 100644 --- a/docs/en/Migration-Guides/Abp-5_0.md +++ b/docs/en/Migration-Guides/Abp-5_0.md @@ -2,7 +2,8 @@ ## IdentityUser -`IsActive ` property is added to the `IdentityUser`. This flag will be checked during the authentication of the users. See [PR](https://github.com/abpframework/abp/pull/10185). **After the migration, set this property to `true` for the existing users: `UPDATE AbpUsers SET IsActive=1`** +`IsActive ` property is added to the `IdentityUser`. This flag will be checked during the authentication of the users. See the related [PR](https://github.com/abpframework/abp/pull/10185). +**After the migration, set this property to `true` for the existing users: `UPDATE AbpUsers SET IsActive=1`** For EFCore you can change `defaultValue` to `true` in the migration class: (This will add the column with `true` value for the existing records.)