TECHIES WORLD

For Techs.... Techniques.... Technologies....

BashCpanelLinux

PostgreSQL ERROR: function uuid_generate_v4() does not exist

ERROR: function uuid_generate_v4() does not exist

The above error is because of the absence of "uuid-ossp" extention.

This plugin can be installed using the following PostgreSQL query.

>CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

Plugin "uuid-ossp" will be available for usage now.

That's all…

Leave a Reply