SELECT
COUNT(DISTINCT a.proposal_id) AS "Proposals",
COUNT(DISTINCT a.proposer) AS "Proposers",
COUNT(DISTINCT b.tx_hash) AS "Votes",
COUNT(DISTINCT b.voter) AS "Voters"
FROM ethereum.aave.ez_proposals a, ethereum.aave.ez_votes b
where date(a.block_timestamp) >= CURRENT_DATE - 90
and date(b.block_timestamp) >= CURRENT_DATE - 90