new test resultsource
[dbsrgits/DBIx-Class-Fixtures.git] / t / lib / DBICTest / Schema / Artist / WashedUp.pm
CommitLineData
56652073 1package # hide from PAUSE
2 DBICTest::Schema::Artist;
3
4use base 'DBIx::Class::Core';
5
6__PACKAGE__->table('artist_washed_up');
7__PACKAGE__->add_columns(
8 'fk_artistid' => {
9 data_type => 'integer',
10 is_auto_increment => 1,
11 },
12);
13
14__PACKAGE__->set_primary_key('fk_artistid');
15__PACKAGE__->belongs_to(
16 'artist', 'DBICTest::Schema::Artist',
17 { 'foreign.artistid' => 'self.fk_artistid' }
18);
19
201;