Timezone support for InflateColumn::DateTime (sergio)
[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
4740bdb7 12 FileColumn
9c2c91ea 13 Link
14 Bookmark
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',
3bd6e3e0 28 'FourKeys_to_TwoKeys',
5ce32fc1 29 '#dummy',
30 'SelfRef',
5efe4c79 31 'ArtistUndirectedMap',
bab77431 32 'ArtistSourceName',
b1fb2c94 33 'ArtistSubclass',
7411204b 34 'Producer',
35 'CD_to_Producer',
5ce32fc1 36 ),
dda9af55 37 qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/,
78060df8 38 qw/Collection CollectionObject TypedObject/,
39 qw/Owners BooksInLibrary/
5ce32fc1 40);
a02675cd 41
421;