add_months

Function add_months 

Source
pub fn add_months(dtm: i64, months: u32) -> i64
Expand description

adds x months to the timestamp

use scaffolding_core::defaults::*;

assert_eq!(add_months(1711295319, 1), 1713973719);