Newer Older
14 lines | 0.203kb
test cleanup
Yuki Kimoto authored on 2011-08-15
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 cleanup
Yuki Kimoto authored on 2011-08-15
12
);
13

            
14
1;