Changelog: add NC22 migration notice

* fixes #858
* fixes #856

Signed-off-by: Sven Seeberg <mail@sven-seeberg.de>
This commit is contained in:
Sven Seeberg 2021-11-29 11:34:48 +01:00
parent 0f103befa5
commit 7bc04b885a
Signed by: sven.seeberg
GPG key ID: 29559DD5A83806B5

View file

@ -8,9 +8,23 @@ All notable changes to this project will be documented in this file.
- Full rewrite of the app for Nextcloud 22 - Full rewrite of the app for Nextcloud 22
- Type of Circles are gone, replaced by config flags - Type of Circles are gone, replaced by config flags
- first implementation of federated circles (2.0) - first implementation of federated circles (2.0)
- first implementation of new ExtendedQueryBuilder - first implementation of new ExtendedQueryBuilder
- Important: Circles and Circle memberships will be migrated with cron jobs.
(changelog in progress) However, this can take a long time with large databases. The process can
be speed up by executing the migrations manually. This can still take a
couple of days. To migrate the Circles and memberships, use `occ`:
```bash
occ circles:sync --migration [--force]
occ circles:memberships --all
```
It may happen that the `circles:sync` command does not migrate all Circles
in the first run. Re-run this command until all Circle are migrated. You can
check if all Circles are migrated with the following SQL query:
```sql
SELECT COUNT(unique_id) FROM nc_circle_circles WHERE unique_id NOT IN (SELECT unique_id FROM nc_circles_circle);
```
(changelog in progress)
### 0.20.6 ### 0.20.6