I want to highlight a specific column in my PostgreSQL database from type character_varying to enter a date. phpPgAdmin gives me the following error:
ERROR: column "date" cannot be selected for entering date
In a statement: ALTER TABLE "public". "tablename" ALTER COLUMN "date" TYPE date
What should I do? Thanks
source share