[PR #4108] [MERGED] fix: migrate cloud document when the document content is not sync to … #6063

Closed
opened 2026-03-23 22:21:33 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4108
Author: @appflowy
Created: 12/6/2023
Status: Merged
Merged: 12/6/2023
Merged by: @appflowy

Base: mainHead: fix_migrate_empty_doc


📝 Commits (2)

  • ce0ec81 fix: migrate cloud document when the document content is not sync to local
  • 1b9c9b0 chore: clippy

📊 Changes

27 files changed (+118 additions, -83 deletions)

View changed files

📝 frontend/rust-lib/event-integration/tests/database/local_test/group_test.rs (+1 -1)
📝 frontend/rust-lib/event-integration/tests/user/migration_test/collab_db_restore.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/field_entities.rs (+6 -6)
📝 frontend/rust-lib/flowy-database2/src/entities/filter_entities/util.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/sort_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/cell/type_cell_data.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+3 -3)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/layout_deps.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_group.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/services/field/field_builder.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/checkbox_type_option/checkbox_tests.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/number_type_option/number_tests.rs (+5 -5)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/text_type_option/text_tests.rs (+3 -3)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/type_option.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/type_option_cell.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/services/filter/entities.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/services/share/csv/import.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/sort/controller.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/sort/entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/tests/database/database_editor.rs (+4 -4)

...and 7 more files

📄 Description

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/4108 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 12/6/2023 **Status:** ✅ Merged **Merged:** 12/6/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_migrate_empty_doc` --- ### 📝 Commits (2) - [`ce0ec81`](https://github.com/AppFlowy-IO/AppFlowy/commit/ce0ec8190fd6cec17c4d5bc6db19def6506590fd) fix: migrate cloud document when the document content is not sync to local - [`1b9c9b0`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b9c9b066016bc6043450308000548223803bb22) chore: clippy ### 📊 Changes **27 files changed** (+118 additions, -83 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/event-integration/tests/database/local_test/group_test.rs` (+1 -1) 📝 `frontend/rust-lib/event-integration/tests/user/migration_test/collab_db_restore.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/field_entities.rs` (+6 -6) 📝 `frontend/rust-lib/flowy-database2/src/entities/filter_entities/util.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/sort_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/cell/type_cell_data.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/layout_deps.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_group.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/field/field_builder.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/checkbox_type_option/checkbox_tests.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/number_type_option/number_tests.rs` (+5 -5) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/text_type_option/text_tests.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/type_option.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/type_option_cell.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/filter/entities.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/services/share/csv/import.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/sort/controller.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/sort/entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/tests/database/database_editor.rs` (+4 -4) _...and 7 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:21:33 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6063
No description provided.