Very basic tests for DBIC:Positioned.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Artist.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::Artist;
3
4 use base 'DBIx::Class::Core';
5
6 __PACKAGE__->load_components('Positioned','PK::Auto');
7
8 DBICTest::Schema::Artist->table('artist');
9 DBICTest::Schema::Artist->add_columns(
10   'artistid' => {
11     data_type => 'integer',
12     is_auto_increment => 1
13   },
14   'name' => {
15     data_type => 'varchar',
16     size      => 100,
17     is_nullable => 1,
18   },
19   position => {
20     data_type => 'integer',
21   },
22 );
23 DBICTest::Schema::Artist->set_primary_key('artistid');
24 __PACKAGE__->position_column('position');
25
26 __PACKAGE__->mk_classdata('field_name_for', {
27     artistid    => 'primary key',
28     name        => 'artist name',
29     position    => 'list position',
30 });
31
32 1;