Newer Older
11 lines | 0.195kb
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
1
package MyModel8::table2;
2

            
3
use base 'MyModel8';
4

            
5
__PACKAGE__->attr(filter => sub {
DBIx::Custom::Model filter a...
Yuki Kimoto authored on 2011-04-18
6
    {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
7
        key3 => {out => sub { $_[0] * 2}, in => sub { $_[0] * 3}, end => sub { $_[0] * 4 }}
DBIx::Custom::Model filter a...
Yuki Kimoto authored on 2011-04-18
8
    }
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
9
});
10

            
11
1;