Require Data::Page 2.00
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artist.pm
CommitLineData
11b78bd6 1package DBICTest::Schema::Artist;
a02675cd 2
3use base 'DBIx::Class::Core';
4
11b78bd6 5DBICTest::Schema::Artist->table('artist');
6DBICTest::Schema::Artist->add_columns(qw/artistid name/);
7DBICTest::Schema::Artist->set_primary_key('artistid');
a02675cd 8
91;