The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

CREATE TABLE nodes (
    node_id INTEGER PRIMARY KEY AUTOINCREMENT,
    name STRING,
    parent_id INTEGER,
    position INTEGER,
    lft INTEGER,
    rgt INTEGER
);