Commit | Line | Data |
bab77431 |
1 | package # hide from PAUSE |
c6d74d3e |
2 | DBICTest::Schema; |
a02675cd |
3 | |
4 | use base qw/DBIx::Class::Schema/; |
5 | |
5ce32fc1 |
6 | no warnings qw/qw/; |
7 | |
a02675cd |
8 | __PACKAGE__->load_classes(qw/ |
5ce32fc1 |
9 | Artist |
4e298a80 |
10 | Employee |
5ce32fc1 |
11 | CD |
12 | #dummy |
13 | Track |
14 | Tag |
15 | /, |
16 | { 'DBICTest::Schema' => [qw/ |
17 | LinerNotes |
18 | OneKey |
19 | #dummy |
20 | TwoKeys |
9fcda149 |
21 | Serialized |
5ce32fc1 |
22 | /]}, |
23 | ( |
24 | 'FourKeys', |
25 | '#dummy', |
26 | 'SelfRef', |
5efe4c79 |
27 | 'ArtistUndirectedMap', |
bab77431 |
28 | 'ArtistSourceName', |
7411204b |
29 | 'Producer', |
30 | 'CD_to_Producer', |
5ce32fc1 |
31 | ), |
f86fcf0d |
32 | qw/SelfRefAlias TreeLike TwoKeyTreeLike Event/ |
5ce32fc1 |
33 | ); |
a02675cd |
34 | |
35 | 1; |