Commit | Line | Data |
---|---|---|
c6d74d3e | 1 | package # hide from PAUSE |
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 |
80021def | 10 | Employee::Positioned |
11 | Employee::AdjacencyList | |
12 | Employee::PositionedAdjacencyList | |
5ce32fc1 | 13 | CD |
14 | #dummy | |
15 | Track | |
16 | Tag | |
17 | /, | |
18 | { 'DBICTest::Schema' => [qw/ | |
19 | LinerNotes | |
20 | OneKey | |
21 | #dummy | |
22 | TwoKeys | |
9fcda149 | 23 | Serialized |
5ce32fc1 | 24 | /]}, |
25 | ( | |
26 | 'FourKeys', | |
27 | '#dummy', | |
28 | 'SelfRef', | |
5efe4c79 | 29 | 'ArtistUndirectedMap', |
7411204b | 30 | 'Producer', |
31 | 'CD_to_Producer', | |
5ce32fc1 | 32 | ), |
887ce227 | 33 | qw/SelfRefAlias TreeLike/ |
5ce32fc1 | 34 | ); |
a02675cd | 35 | |
36 | 1; |