Allow to empty the database
To be able to replace the database with a fresh, empty one, via the webfrontend, add this to your yml-configuration, e.g. in easydb-server.yml
:
easydb-server.yml
server:
api:
settings:
purgedata: true
The default is: false
, or in other words: disabled.
Make sure to not duplicate lines in the same file. For example, do not put server:
twice into the same yml-file.
easydb-server.yml
is part of the directory config
in your central data storage directory which was set up during installation.
Warning: Using the now enabled feature is destructive and cannot be undone (better have backups at hand).
Allow to empty the database and schema
To be able to replace the database and schema, via the webfrontend, to their state just after a fresh installation, add this to your yml-configuration, e.g. in easydb-server.yml
:
easydb-server.yml
server:
api:
settings:
purgeall: true
The default is: false
, or in other words: disabled.
Make sure to not duplicate lines in the same file. For example, do not put server:
twice into the same yml-file.
easydb-server.yml
is part of the directory config
in your central data storage directory which was set up during installation.
Warning: Using the now enabled feature is destructive and cannot be undone (better have backups at hand).