Browse Source

Merge pull request #24961 from abpframework/EngincanV/update-migration-guide-10-2

Update v10.2 migration guide
pull/24963/head
Enis Necipoglu 1 month ago
committed by GitHub
parent
commit
557c26e4e7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 16
      docs/en/release-info/migration-guides/abp-10-2.md

16
docs/en/release-info/migration-guides/abp-10-2.md

@ -13,7 +13,7 @@ This document is a guide for upgrading ABP v10.1 solutions to ABP v10.2. There a
## Open-Source (Framework)
This version only requires changes on the open-source side. **There are no breaking changes on the PRO side.**
This version contains the following changes on the open-source side:
### Add New EF Core Migrations for Audit Logging Module
@ -116,3 +116,17 @@ x.WithHostAuthentication();
- **BatchRunCondition renamed:** `BatchRunCondition? BatchRunCondition``RunCondition? RunCondition` in `AbpBackgroundJobsTimeTickerConfiguration`
> See [#24916](https://github.com/abpframework/abp/pull/24916) for more details.
## Pro
There are no breaking changes on the PRO side. However, if you use the Identity Pro module with Entity Framework Core, you need to make the following update:
### Add `UserInvitations` DbSet for Identity Pro EF Core DbContexts
If your solution uses the Identity Pro module with Entity Framework Core, and your DbContext base class implements `IIdentityProDbContext`, add the new `UserInvitations` DbSet property to your DbContext:
```csharp
public DbSet<UserInvitation> UserInvitations { get; set; }
```
This is required for Identity Pro module users (it is installed by default in most/every startup templates). After adding the property, create a new EF Core migration and apply it to your database.

Loading…
Cancel
Save