zbys Postgres casecheck patch
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
CommitLineData
bab77431 1package # hide from PAUSE
c6d74d3e 2 DBICTest::Schema;
a02675cd 3
4use base qw/DBIx::Class::Schema/;
5
5ce32fc1 6no warnings qw/qw/;
7
a02675cd 8__PACKAGE__->load_classes(qw/
5ce32fc1 9 Artist
4e298a80 10 Employee
5ce32fc1 11 CD
9c2c91ea 12 Link
13 Bookmark
0b88a5bb 14 Casecheck
5ce32fc1 15 #dummy
16 Track
17 Tag
18 /,
19 { 'DBICTest::Schema' => [qw/
20 LinerNotes
21 OneKey
22 #dummy
23 TwoKeys
9fcda149 24 Serialized
5ce32fc1 25 /]},
26 (
27 'FourKeys',
28 '#dummy',
29 'SelfRef',
5efe4c79 30 'ArtistUndirectedMap',
bab77431 31 'ArtistSourceName',
7411204b 32 'Producer',
33 'CD_to_Producer',
5ce32fc1 34 ),
637ca936 35 qw/SelfRefAlias TreeLike TwoKeyTreeLike/
5ce32fc1 36);
a02675cd 37
381;