Commit | Line | Data |
---|---|---|
b5851590 | 1 | package # hide from PAUSE |
2 | DBICTest::Schema; | |
3 | ||
4 | use base qw/DBIx::Class::Schema/; | |
5 | ||
6 | __PACKAGE__->load_components(qw/+DBIx::Class::Schema::Journal/); | |
7 | ||
c5fba518 | 8 | __PACKAGE__->journal_user(['DBICTest::Schema::Artist', {'foreign.artistid' => 'self.user_id'}]); |
b5851590 | 9 | |
c5fba518 | 10 | no warnings qw/qw/; |
b5851590 | 11 | __PACKAGE__->load_classes(qw/ |
12 | Artist | |
13 | CD | |
14 | Track | |
15 | / | |
16 | ); | |
17 | ||
18 | 1; |