i have to alter a table column from "time with time zone" to "timestamp with time zone".
I tryed
alter table mytable
alter column date type timestamp with time zone using date::timestamp with time zone
But i get an error that postgres cannot automatically convert these types. How can i do this? SQLFiddle