Newer Older
12 lines | 0.18kb
added Next version
Yuki Kimoto authored on 2011-11-16
1
package MyModel5::TABLE3;
2

            
3
use strict;
4
use warnings;
5

            
6
use base 'MyModel5';
7

            
8
__PACKAGE__->attr(table => 'TABLE3');
9

            
10
__PACKAGE__->attr('primary_key' => sub { ['KEY1', 'KEY2'] });
11

            
12
1;