Add 4.x.x migration doc

This commit is contained in:
François Voron
2020-12-28 08:58:06 +01:00
parent 7cf7154e27
commit 966b1bd4c4
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# 3.x.x ➡️ 4.x.x
## `expires_at` property in `OAuthAccount` is now optional
Before 4.x.x, the `expires_at` property in `OAuthAccount` model was mandatory. It was causing issues with some services that don't have such expiration property.
If you use **SQLAlchemy** or **Tortoise** databases adapters, you'll have to make a migration to update your database schema.

View File

@@ -55,3 +55,4 @@ nav:
- migration/08_to_1x.md
- migration/1x_to_2x.md
- migration/2x_to_3x.md
- migration/3x_to_4x.md