Some time when you create the table on PostgreSQL and want to use UUID Generator V4 on uuid field but turn out that you got this error.
Function uuid_generate_v4() does not exist
To resolve this problem, just run this command in the SQL Editor
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
Note: you also need to have uuid-ossp.control extension to be available provided by postgresql-contrib package
Top comments (4)
thanks
Thanks. it's helpfull
Worked like a charm! Thanks!
Thank you