hyperlog/crates/hyperlog-server/migrations/crdb/20240201211013_initial.sql

18 lines
367 B
MySQL
Raw Normal View History

-- 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
);
CREATE UNIQUE INDEX idx_unique_root_path ON nodes(root_id, path);