feat: server can actually create root and sections
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
@@ -1 +1,14 @@
|
||||
-- Add migration script here
|
||||
|
||||
CREATE TABLE roots (
|
||||
id UUID NOT NULL PRIMARY KEY,
|
||||
root_name VARCHAR(255) UNIQUE NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE nodes (
|
||||
id UUID NOT NULL PRIMARY KEY,
|
||||
root_id UUID NOT NULL,
|
||||
path VARCHAR NOT NULL,
|
||||
item_type VARCHAR NOT NULL,
|
||||
item_content JSONB
|
||||
);
|
||||
|
Reference in New Issue
Block a user