The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
create table foo (
    fookey integer primary key,
    stuff varchar
);

create table foo_params (
    fookey integer references foo(fookey),
    name varchar,
    value varchar,
    primary key (fookey, name)
);