Newer Older
10 lines | 0.178kb
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
1
package MyModel8::table2;
cleanup
Yuki Kimoto authored on 2011-06-13
2
use MyModel8 -base;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
3

            
cleanup
Yuki Kimoto authored on 2011-06-13
4
has filter => sub {
DBIx::Custom::Model filter a...
Yuki Kimoto authored on 2011-04-18
5
    {
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
6
        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
7
    }
cleanup
Yuki Kimoto authored on 2011-06-13
8
};
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
9

            
10
1;