Browse Source

Add MongoDB Script for migration

pull/10423/head
Enis Necipoglu 5 years ago
committed by GitHub
parent
commit
8c1f048069
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/en/Migration-Guides/Abp-5_0.md

4
docs/en/Migration-Guides/Abp-5_0.md

@ -95,6 +95,10 @@ public partial class AddIsActiveToIdentityUser : Migration
For MongoDB, you need to update the `IsActive` field for the existing users in the database.
```js
db.AbpUsers.updateMany({},{$set:{ IsActive : true }})
```
#### Identity -> Account API Changes
`IProfileAppService` (and the implementation and the related DTOs) are moved to the Account module from the Identity module (done with [this PR](https://github.com/abpframework/abp/pull/10370/files)).

Loading…
Cancel
Save