AppFlowy-IO / AppFlowy-Cloud

AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust.
GNU Affero General Public License v3.0
524 stars 145 forks source link

feat: make appflowy-cloud migrate use feature flags #627

Open Horusiath opened 2 weeks ago

Horusiath commented 2 weeks ago

This PR modifies how we're running appflowy migrations. It basically provides a custom migration source capable of providing alternative migration sub-directories to be included/excluded in migration process. These can be used for conditional features like AI search/indexing and are execute in their order to creation.

It only affects migrations run by appflowy-cloud start process, and NOT by sqlx migrate CLI command. To do that we would need to send PR to sqlx itself.

It also introduces an ai feature flag that can is used for conditional inclusion of search feature. (probably will need to change the name to something like vector-search).