Update to add myself to contributors and to hide Modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / testlib / MyStarLink.pm
CommitLineData
ea2e61bf 1package MyStarLink;
2
3BEGIN { unshift @INC, './t/testlib'; }
4use base 'MyBase';
5
6use strict;
7
8__PACKAGE__->set_table();
9__PACKAGE__->columns(All => qw/linkid film star/);
10__PACKAGE__->has_a(film => 'MyFilm');
11__PACKAGE__->has_a(star => 'MyStar');
12
13sub create_sql {
14 return qq{
15 linkid TINYINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
16 film TINYINT NOT NULL,
17 star TINYINT NOT NULL
18 };
19}
20
211;
22