August 21, 2015
1 2 3 4 5 6 |
my $search = $schema>resultset('Table')->search( { column_1 => { 'in' => [ 105, 106, 73, 74, 99, 75 ] }, column_2 => { 'not in' => [ 45,25,28] }, column_3 => { 'not in' => \@array} } ); |
Read more
August 13, 2015
One of the great things about GIT is the ease of branching locally. So it is a great idea to branch for each bug fix and feature and then merge those into master when they are fully tested and ready. But what if you get a bug report and go to town on it realizing […]
Read more