默认安装的 Postgresql 是不带 UUID 函数的,为了生成一个 UUID,我们必须装载它到数据库中。
CREATE EXTENSION "uuid-ossp";
然后就可以使用uuid_generate_v4()函数了.
select uuid_generate_v4();
转自:
http://stackoverflow.com/questions/20810921/cant-use-uuid-and-create-an-extension-to-use-it
http://stackoverflow.com/questions/12505158/generating-a-uuid-in-postgres-for-insert-statement