我无法使用Postgres中的uuid_generate_v4()
创建表格,因为我一直收到此错误:
访问方法" btree"不存在
我该怎么办?那是怎么回事create table events (
id uuid primary key default uuid_generate_v4() not null,
name text not null
);
与btree有关吗?
这是我正在运行的查询
{{1}}
答案 0 :(得分:0)
显然删除Default
关键字有助于消除该错误。我仍然不清楚为什么会发生这种情况,因此,任何进一步的解释都会有所帮助。