Delete database

2
Hello, What are all the ways to delete all the data available in database
asked
2 answers
6

In you local IDE close the IDE and delete the folder data in directory “deployment” that will delete you entire data and when you restart your IDE Mendix will rebuild the database.

In cloud I would “undeploy” or delete the application from the node and delete all backups to see if that takes care of it.. or see if that will provide further options.

answered
0

You can write a microflow that retrieves each of the entities in your database and then deletes them and then commits this to the database. This microflow can be called using an action button within the app

answered