This is what window functions are for:
select year,
month,
fixes,
fixes - lag(fixes) over (order by year, month) as increase,
from the_table;
For more details please see the manual:
http://www.postgresql.org/docs/current/static/tutorial-window.html