Files
huly-platform/server/etc/migrations/V1__initial.sql
T
Alexey Aristov c634e31cdc rename hulylake -> server
Signed-off-by: Alexey Aristov <aav@acm.org>
2025-08-29 16:47:12 +02:00

18 lines
345 B
SQL

create table blob(
key text not null,
hash text not null
);
create unique index blob_key on blob(key);
create unique index blob_hash on blob(hash);
create table object(
workspace uuid not null,
key text not null,
part smallint not null,
data jsonb not null,
inline bytea,
primary key (workspace, key, part)
)