Yuki Kimoto cleanup
d71f127 13 years ago
1 contributor
8 lines | 0.202kb
package MyModel8::table1;
use MyModel8 -base;

has join => sub { ['left join table2 as table2_alias on table1.key1 = table2_alias.key1'] };
has table_alias => sub { {'table2_alias' => 'table2'} };


1;