Permanently removes a project and all associated data from the database. This includes the project configuration, task table, and resource assignments.
Details
This function removes:
The project's task table (
task_<project>) and all tasksAll project-resource associations
The project entry from the project table
Warning: This is a destructive operation that cannot be undone. All task data and history for this project will be permanently lost.
Log files on resources are NOT automatically deleted. Remove them manually if needed.
Examples
if (FALSE) { # \dontrun{
# Not run:
# Delete a completed project
project_delete("old_simulation")
# Verify deletion
project_list()
} # }