Newer Older
13 lines | 0.254kb
added t/common-mysql-qualifi...
Yuki Kimoto authored on 2012-03-02
1
package MyModel5::dbix_custom::table3;
2

            
3
use strict;
4
use warnings;
5

            
6
use base 'MyModel5';
7

            
8
__PACKAGE__->attr(name => 'dbix_custom.table3');
9
__PACKAGE__->attr(table => 'dbix_custom.table3');
10

            
11
__PACKAGE__->attr('primary_key' => sub { ['key1', 'key2'] });
12

            
13
1;