Page MenuHomePhabricator

max date should be most recent date in the data, not date of last program run
Closed, ResolvedPublic

Description

The per-project SQL files do select max(date) from prefix_task_history, but this table is automatically generated and its max date is the date phlogiston last ran --reconstruct. Instead, maybe use select max(date_modified) from maniphest_transaction, which is the most recent date in the last dump, regardless of project. Less inaccurate, and only has to run once and be shared by all projects.