When installing Semarchy on a PostgreSQL database, customers sometimes run into errors like this:
+- ERROR: function uuid_generate_v1() does not exist Hint: No function matches the given name and argument types. You might need to add explicit type casts.
This error can occur when the search path in the database is not correctly configured.
Do you have a search_path problem?
The above error will be thrown if:
- The function does not exist.
- The function exists, but you do not have access to it.
- The function exists, and you have access, but it is not in the search_path.
/* First confirm... (More)