mirror of
https://github.com/suitenumerique/docs.git
synced 2026-08-26 01:12:27 +02:00
15 lines
451 B
SQL
15 lines
451 B
SQL
-- Column-for-column from yhub bin/init-db.js (unquoted identifiers so
|
|
-- case-folding matches yhub's persistence.js queries).
|
|
CREATE TABLE IF NOT EXISTS yhub_ydoc_v1 (
|
|
org text,
|
|
docid text,
|
|
branch text,
|
|
t text,
|
|
created INT8,
|
|
gcDoc bytea,
|
|
nongcDoc bytea,
|
|
contentmap bytea,
|
|
contentids bytea,
|
|
PRIMARY KEY (org,docid,branch,t)
|
|
);
|