Newer Older
11 lines | 0.144kb
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
1
package MyModel6::table3;
2

            
3
use base 'MyModel6';
4

            
5
__PACKAGE__->attr(filter => sub {
all filter can receive array...
Yuki Kimoto authored on 2011-02-25
6
    [
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
7
        key1 => {in => sub { uc $_[0] }}
all filter can receive array...
Yuki Kimoto authored on 2011-02-25
8
    ]
add experimental DBIx::Custo...
Yuki Kimoto authored on 2011-02-24
9
});
10

            
11
1;