- added EXPERIMENTAL DBIx::C...
|
1 |
package MyModel8::table1; |
2 | ||
3 |
use base 'MyModel8'; |
|
4 | ||
- added EXPERIMENTAL DBIx::C...
|
5 |
__PACKAGE__->attr(join => sub { ['left join table2 as table2_alias on table1.key1 = table2_alias.key1'] }); |
6 | ||
7 |
__PACKAGE__->attr(table_alias => sub { {'table2_alias' => 'table2'} }); |
|
8 | ||
9 | ||
- added EXPERIMENTAL DBIx::C...
|
10 |
1; |