Newer Older
13 lines | 0.185kb
cleanup test
Yuki Kimoto authored on 2011-08-10
1
package MyModel1::table1;
2

            
3
use DBIx::Custom::Model -base;
4

            
5
sub insert {
cleanup
Yuki Kimoto authored on 2012-01-20
6
  my ($self, $param) = @_;
7
  
8
  return $self->SUPER::insert(param => $param);
cleanup test
Yuki Kimoto authored on 2011-08-10
9
}
10

            
11
sub list { shift->select; }
12

            
13
1;