[PR #6395] [MERGED] chore: Migrate type option #7358

Closed
opened 2026-03-23 23:19:15 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6395
Author: @appflowy
Created: 9/24/2024
Status: Merged
Merged: 9/25/2024
Merged by: @appflowy

Base: mainHead: migrate_type_option


📝 Commits (10+)

  • 0eee69b chore: migrate number type option
  • d7829c6 chore: migrate single select
  • e4ecc40 chore: migrate single select
  • 8900dbf chore: migrate multi select
  • 66adcbb chore: migrate multi select
  • af39d76 chore: migrate date type option
  • 54c8338 chore: migrate timestamp type option
  • 64bf3e2 chore: support friendly full
  • 3193e51 chore: migrate media type option
  • 6ed398b chore: update collab

📊 Changes

92 files changed (+1031 additions, -2624 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date/date_time_format.dart (+5 -1)
📝 frontend/appflowy_flutter/pubspec.lock (+6 -6)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+193 -168)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+10 -10)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+135 -126)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+9 -9)
📝 frontend/rust-lib/Cargo.lock (+132 -180)
📝 frontend/rust-lib/Cargo.toml (+11 -11)
📝 frontend/rust-lib/event-integration-test/src/database_event.rs (+7 -4)
📝 frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs (+7 -5)
📝 frontend/rust-lib/flowy-ai/src/chat.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/entities/file_entities.rs (+21 -0)
📝 frontend/rust-lib/flowy-database2/src/entities/filter_entities/select_option_filter.rs (+3 -3)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/checkbox_entities.rs (+2 -2)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/checklist_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/date_entities.rs (+17 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/media_entities.rs (+20 -4)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/number_entities.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/select_option_entities.rs (+11 -10)
📝 frontend/rust-lib/flowy-database2/src/entities/type_option_entities/text_entities.rs (+7 -5)

...and 72 more files

📄 Description

Feature Preview


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/6395 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 9/24/2024 **Status:** ✅ Merged **Merged:** 9/25/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `migrate_type_option` --- ### 📝 Commits (10+) - [`0eee69b`](https://github.com/AppFlowy-IO/AppFlowy/commit/0eee69b58e4afffba07fc6aef6b5455eb3309f6f) chore: migrate number type option - [`d7829c6`](https://github.com/AppFlowy-IO/AppFlowy/commit/d7829c6439d4173910611e046840f48200cee979) chore: migrate single select - [`e4ecc40`](https://github.com/AppFlowy-IO/AppFlowy/commit/e4ecc40a6074db83dbdf7e1845ce5fe3850c4414) chore: migrate single select - [`8900dbf`](https://github.com/AppFlowy-IO/AppFlowy/commit/8900dbf83c7b5e572ef5a22e055f7d7489c9edca) chore: migrate multi select - [`66adcbb`](https://github.com/AppFlowy-IO/AppFlowy/commit/66adcbbcf8300d841f940da9627a69bdc94a7398) chore: migrate multi select - [`af39d76`](https://github.com/AppFlowy-IO/AppFlowy/commit/af39d761195d359934f0205df9f41788c141e49e) chore: migrate date type option - [`54c8338`](https://github.com/AppFlowy-IO/AppFlowy/commit/54c8338d510f6d17cf5ab6205b2c71706e2c26ef) chore: migrate timestamp type option - [`64bf3e2`](https://github.com/AppFlowy-IO/AppFlowy/commit/64bf3e2aac164645101db976c9956ec088e9f575) chore: support friendly full - [`3193e51`](https://github.com/AppFlowy-IO/AppFlowy/commit/3193e515792a3a937b575b4cf30eacafd71488db) chore: migrate media type option - [`6ed398b`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ed398b0e7c7d85f04f443f5f1408aab7aa55f48) chore: update collab ### 📊 Changes **92 files changed** (+1031 additions, -2624 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/plugins/database/widgets/field/type_option_editor/date/date_time_format.dart` (+5 -1) 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -6) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+193 -168) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+10 -10) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+135 -126) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/Cargo.lock` (+132 -180) 📝 `frontend/rust-lib/Cargo.toml` (+11 -11) 📝 `frontend/rust-lib/event-integration-test/src/database_event.rs` (+7 -4) 📝 `frontend/rust-lib/event-integration-test/tests/database/af_cloud/util.rs` (+7 -5) 📝 `frontend/rust-lib/flowy-ai/src/chat.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/entities/file_entities.rs` (+21 -0) 📝 `frontend/rust-lib/flowy-database2/src/entities/filter_entities/select_option_filter.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/checkbox_entities.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/checklist_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/date_entities.rs` (+17 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/media_entities.rs` (+20 -4) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/number_entities.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/select_option_entities.rs` (+11 -10) 📝 `frontend/rust-lib/flowy-database2/src/entities/type_option_entities/text_entities.rs` (+7 -5) _...and 72 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### 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 23:19:15 +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#7358
No description provided.