dosubot[bot] commented on issue #33347: URL: https://github.com/apache/superset/issues/33347#issuecomment-2848776762
<!-- Answer --> You should not manually create the "ab_view_menu_id_seq" sequence in your database schema. This sequence is defined in the code using SQLAlchemy's `Sequence` class, which should automatically handle its creation when the database schema is created or migrated using SQLAlchemy's migration tools. To resolve this issue, ensure that your database migrations are properly set up and executed. You can do this by running the following command to apply the necessary migrations: ```bash superset db upgrade ``` This command will execute the migration scripts and should automatically create the required sequence and any other necessary database objects <sup>[[1]](https://github.com/apache/superset/blob/master/superset/migrations/shared/security_converge.py)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/4b8a7496-cfbc-4f43-85db-5729dfd39e64?feedback_type=other)</sup> -- 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]
