R/config_tables_last_updated.R
get_config_tables_last_updated.RdRetrieves the last updated timestamps for database tables from the configuration tracking system.
get_config_tables_last_updated(table_name = NULL)A data.table containing last updated information with columns: table_name, last_updated_datetime, and other tracking metadata
if (FALSE) { # \dontrun{
# Get last updated info for all tables
get_config_tables_last_updated()
# Get info for a specific table
get_config_tables_last_updated(table_name = "anon_covid_cases")
} # }