Newer Older
8 lines | 0.202kb
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-14
1
package MyModel8::table1;
cleanup
Yuki Kimoto authored on 2011-06-13
2
use MyModel8 -base;
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-14
3

            
cleanup
Yuki Kimoto authored on 2011-06-13
4
has join => sub { ['left join table2 as table2_alias on table1.key1 = table2_alias.key1'] };
5
has table_alias => sub { {'table2_alias' => 'table2'} };
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-15
6

            
7

            
- added EXPERIMENTAL DBIx::C...
Yuki Kimoto authored on 2011-03-14
8
1;