File tree Expand file tree Collapse file tree
src/content/docs/bff/upgrading Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ You can configure the location of your `index.html` by specifying:
133133
134134### Server Side Sessions Database Migrations
135135
136- When using the server side sessions feature backed by the `Duende .BFF .EntityFramework ` package , you will need to script [Entity Framework database migrations ](/ bff / fundamentals / session / server - side - sessions .mdx #entity - framework - migrations ) and apply these changes to your database .
136+ When using the server side sessions feature backed by the `Duende .BFF .EntityFramework ` package , you will need to script [Entity Framework database migrations ](/ bff / fundamentals / session / server - side - sessions .mdx #entity - framework - migrations ) and apply these changes to your database .
137137
138138```shell
139139dotnet ef migrations add BFFUserSessionsV4 - o Migrations - c SessionDbContext
@@ -155,4 +155,9 @@ CREATE UNIQUE INDEX "IX_UserSessions_PartitionKey_SessionId" ON "UserSessions" (
155155
156156DROP INDEX " IX_UserSessions_ApplicationName_Key" ;
157157CREATE UNIQUE INDEX " IX_UserSessions_PartitionKey_Key" ON " UserSessions" (" PartitionKey" , " Key" );
158- ```
158+ ```
159+
160+ ::: note
161+ This is a breaking database schema change . If you have multiple BFF V3 appliations that share the same database table ,
162+ then you either need to update all BFF Applications to V4 at the same time or use a new database for the upgraded BFF V4 application .
163+ :::
You can’t perform that action at this time.
0 commit comments