Billion-Dollar Precision in Postgres

NUMERIC(precision, scale)
CREATE TABLE `expenses` (
  `id` bigint primary key auto_increment,
  `amount` numeric(12, 2)
);