Browse Source

Merge pull request #10423 from abpframework/add-mongodb-script-for-migration

Add MongoDB Script for migration
pull/10424/head
Halil İbrahim Kalkan 5 years ago
committed by GitHub
parent
commit
04f08bb3cd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      docs/en/Migration-Guides/Abp-5_0.md

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

@ -95,6 +95,11 @@ public partial class AddIsActiveToIdentityUser : Migration
For MongoDB, you need to update the `IsActive` field for the existing users in the database.
You can use following script in MongoShell:
```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