1 package # hide from PAUSE
2 DBICTest::Schema::Artist;
4 use base 'DBIx::Class::Core';
6 __PACKAGE__->load_components('PK::Auto');
8 DBICTest::Schema::Artist->table('artist');
9 DBICTest::Schema::Artist->add_columns(
11 data_type => 'integer',
12 is_auto_increment => 1
15 data_type => 'varchar',
20 DBICTest::Schema::Artist->set_primary_key('artistid');
22 __PACKAGE__->mk_classdata('field_name_for', {
23 artistid => 'primary key',
24 name => 'artist name',