Welcome to the Enterprise Reporting feedback portal. We’re happy you’re here! If you have feedback on how to improve the Enterprise Reporting, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Current Workflow

While deleting a site, currently we are deleting the tables linked to the corresponding site. After deleting the site-related tables from the database, we will be checking whether any other table exists in the database. If there are no other tables, we will drop the database. Otherwise, the database will not be deleted.


Proposed Workflow

Databases will be dropped based on user confirmation.


Web:

  • Show an option with a checkbox to delete the database. If the checkbox is checked, drop all the tables from the database and if there are no other tables, drop the database also.


API:

  • Add a new query parameter - can_delete_database in Delete site API.
    • No Query Parameter - Drop all the tables from the database and if there are no other tables, drop the database also.
    • can_delete_database = true/1 - Drop all the tables from the database and if there are no other tables, drop the database also.
    • can_delete_database = false/0 - Drop tables only.