xref: /plugin/struct/db/update0003.sql (revision e6a2e26b57dd1411a582eba0bdba877d874c7fa3)
1-- stores multi values for all tables, we might split this later into one multival
2-- table per data table
3CREATE TABLE multivals (
4    tbl NOT NULL,
5    colref INTEGER NOT NULL,
6    pid NOT NULL,
7    rev INTEGER NOT NULL,
8    row INTEGER NOT NULL,
9    value,
10    PRIMARY KEY(tbl, colref, pid, rev, row)
11);
12