reynoldmorel opened a new pull request, #37680: URL: https://github.com/apache/superset/pull/37680
<!--- Please write the PR title following the conventions at https://www.conventionalcommits.org/en/v1.0.0/ Example: fix(dashboard): load charts correctly --> ### SUMMARY Two new database tables will be introduced to support onboarding workflows and per-user progress tracking: **Onboarding Workflows** A table to define the available onboarding workflows supported by Superset. Example fields: * id (integer, primary key) * name (string, unique) * description (string) **User Onboarding Workflows** A mapping table to track onboarding workflow usage on a per-user basis. This table will be used to persist whether a user has completed or interacted with a given onboarding workflow, as well as basic usage metadata. Example fields: * user_id (integer, foreign key to the user table) * workflow_id (integer, foreign key to onboarding workflows) * visited (boolean) * last_visited_date (nullable timestamp) * visited_times (integer) Some migrations were added, in general, they should be pretty fast. ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF <!--- Skip this if not applicable --> ### TESTING INSTRUCTIONS <!--- Required! What steps can be taken to manually verify the changes? --> ### ADDITIONAL INFORMATION <!--- Check any relevant boxes with "x" --> <!--- HINT: Include "Fixes #nnn" if you are fixing an existing issue --> - [ ] Has associated issue: - [ ] Required feature flags: - [ ] Changes UI - [x] Includes DB Migration (follow approval process in [SIP-59](https://github.com/apache/superset/issues/13351)) - [x] Migration is atomic, supports rollback & is backwards-compatible - [x] Confirm DB migration upgrade and downgrade tested - [x] Runtime estimates and downtime expectations provided - [ ] Introduces new feature or API - [ ] Removes existing feature or API -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
