We might have a good bunch of open, unresolved tasks which are never shown on a project workboard because they are in a hidden column. I don't know if that's a big problem or not but I can imagine teams to never look at a list of bugs but at workboards only.
It's not trivial to find them either. SELECT project.name FROM project_column JOIN project WHERE project.phid = project_column.projectPHID AND project.status != 100 AND project_column.status = "1" GROUP BY project_column.projectPHID ORDER BY project.name; would list all projects that have at least one hidden workboard column. Now would need to check if the if that columnPHID is listed in the table project_columnposition which means that there is at least one task in that column but that still does not tell us whether that task is open or closed.