pub fn add_months(dtm: i64, months: u32) -> i64
adds x months to the timestamp
use scaffolding_core::defaults::*; assert_eq!(add_months(1711295319, 1), 1713973719);