The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Mock::ExplicitSchemaSchema;
use DBIx::Skinny::Schema;

install_table mock_explicitschema => schema {
    pk 'id';
    columns qw/
        id
        name
        delete_fg
    /;
};

1;