Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 243 Bytes

userlinks.md

File metadata and controls

14 lines (12 loc) · 243 Bytes

Userlinks

DDL

CREATE TABLE paths__userlinks (
    id     INTEGER PRIMARY KEY NOT NULL,
    tb_one TEXT    NOT NULL,
    id_one INTEGER NOT NULL,
    tb_two TEXT    NOT NULL,
    id_two INTEGER NOT NULL,
    sort   INTEGER
);