I have table t1 and column c1 of type boolean NULL. All values in the column are NULL. However PostgreSQL won't let me change the type of the column this way:
ALTER TABLE "t1"
ALTER "c1" TYPE timestamp;
* ERROR: column "c1" cannot be cast to type timestamp without time zone
How can I change the type? Thank you