feat: can add items
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-13 23:33:37 +02:00
parent 699bac7159
commit 7bdf8393b1
8 changed files with 300 additions and 54 deletions

View File

@@ -12,3 +12,6 @@ CREATE TABLE nodes (
item_type VARCHAR NOT NULL,
item_content JSONB
);
CREATE UNIQUE INDEX idx_unique_root_path ON nodes(root_id, path);