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

CREATE TABLE host (
    id      INTEGER PRIMARY KEY,
    name    VARCHAR(100) UNIQUE NOT NULL,
    main    INTEGER NOT NULL,
    FOREIGN KEY (main) REFERENCES site(id)
);
PRAGMA user_version=2;