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/; |
a5222e78 | 11 | DBICTest::Schema->load_classes( |
12 | qw/ | |
b5851590 | 13 | Artist |
14 | CD | |
15 | Track | |
16 | / | |
17 | ); | |
18 | ||
19 | 1; |