Status fields are all double-quote-delimited in the database, which makes the SQL confusing:
WHERE status = '"open"'
Work:
- Change loading to strip double quotes
- change reporting code to not use double-quotes
Acceptance Criteria:
- Records in the database no longer have extra double-quotes
- Code looks like
WHERE status = 'open'
- Everything still works