This commit is contained in:
2025-10-23 08:45:54 +02:00
parent c001935b93
commit 15abe1f1a7
5 changed files with 67 additions and 58 deletions

View File

@@ -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;