html-formhandler-model-dbic
html-formhandler-model-dbic copied to clipboard
HTML::FormHandler::Model::DBIC
https://github.com/gshank/html-formhandler-model-dbic/blob/e580d8aa7803ff0f14df8f588a663cde0b8bd5fb/lib/HTML/FormHandler/TraitFor/Model/DBIC.pm#L407 These should possibly be ~ in front of the brackets? I get this error: https://github.com/gshank/html-formhandler/blob/b62ac37421740b16ed0043e71d968606478335e5/lib/HTML/FormHandler/I18N.pm NB: Creating a related select, with active column set, passing in a default result...
This fixes #18 by looking up the actual column from the accessor name for the search condition used to check uniqueness.
If you have a DB model, something like: ``` __PACKAGE__->add_columns( "id", { data_type => "integer", is_auto_increment => 1, is_nullable => 0, sequence => "roles_id_seq" }, "body_id", { data_type => "integer",...
Sometimes a DBIC schema uses an alternative accessor instead of the actual column name, especially when working with legacy databases, e.g. ```perl __PACKAGE__->add_columns( "uco" => { accessor => "username", data_type...
hfh checks all unique constraints of the result source by default. opting out of this doesnt work as described in the docs because the unique_constraints uses lazy_build and a separate...
in HTML::FormHandler::TraitFor::Model::DBIC::set_item, the primary key(s) are used to calculate the $item_id, and then the $item_id is tested for truthiness. This check is incorrect for schema objects with multiple primary keys,...
This module had a warning for **meta yml declares perl version** at CPANTS as an extra metric. This means generated meta.yml file does not have a minimum perl version to...
This module had **consistent version** issue at CPANTS, which could be easily solved to improve Kwalitee. That issue happens when you have different version numbers declared at different files. Since...
Some modules lacked a $VERSION, and others had a $VERSION that hadn't been incremented in a long time. This makes it difficult to declare prerequisites in other distributions. I also...
As advertised (?)