CREATE TABLE tags_description (
    name text NOT NULL UNIQUE,
    type text NOT NULL,
    comment text,
    author varchar(50),
    meta json,
    ts integer,
    revision BIGSERIAL,
    display_name text,
    default_priority integer,
    description_index SERIAL PRIMARY KEY
);
