1 package # hide from PAUSE
4 BEGIN { unshift @INC, './t/testlib'; }
10 __PACKAGE__->set_table();
11 __PACKAGE__->columns(All => qw/filmid title/);
12 __PACKAGE__->has_many(_stars => 'MyStarLink');
13 __PACKAGE__->columns(Stringify => 'title');
17 sub stars { map $_->star, shift->_stars }
21 filmid TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,