README
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
create table item (
|
||||
id integer primary key,
|
||||
id bigint primary key,
|
||||
data jsonb
|
||||
);
|
||||
|
||||
CREATE INDEX idx_item_data
|
||||
ON item USING gin (data jsonb_path_ops);
|
||||
|
||||
|
||||
DO $$
|
||||
DECLARE
|
||||
f TEXT;
|
||||
|
||||
Reference in New Issue
Block a user