Newer Older
14 lines | 0.203kb
test cleranup
Yuki Kimoto authored on 2011-08-10
1
package MyModel7::table1;
2

            
3
use base 'MyModel7';
4

            
5
__PACKAGE__->attr(
cleanup
Yuki Kimoto authored on 2012-01-20
6
  primary_key => sub { ['key1'] },
7
  join => sub {
8
    [
9
      'left outer join table2 on table1.key1 = table2.key1'
10
    ]
11
  },
test cleranup
Yuki Kimoto authored on 2011-08-10
12
);
13

            
14
1;