Subject: | undefined database field bound in sample code |
In the USAGE section ( https://metacpan.org/module/EntityModel#USAGE ),
the sample table is defined like so:
create table test ( id int, name varchar(255) );
but then the source code sets a url column:
my $tbl = Entity::Test->create({ name => 'Test', url => '/there'
})->commit;
which is impossible for the given database schema.