How can I add days to Ecto.DateTime?
You can use erlang's :calendar
module to manipulate dates without additional dependencies.
A standard way of adding days would be to use :calendar.date_to_gregorian_days/1
do the addition and convert back to the tuple format with :calendar.gregorian_days_to_date/1
.