removed test variable
[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
b829910c 10 SequenceTest
6ec7d1bb 11 BindType
4e298a80 12 Employee
5ce32fc1 13 CD
4740bdb7 14 FileColumn
370f2ba2 15 Genre
9c2c91ea 16 Link
17 Bookmark
5ce32fc1 18 #dummy
19 Track
20 Tag
21 /,
22 { 'DBICTest::Schema' => [qw/
23 LinerNotes
4f6386b0 24 Artwork
25 Image
26 Lyrics
27 LyricVersion
5ce32fc1 28 OneKey
29 #dummy
30 TwoKeys
9fcda149 31 Serialized
5ce32fc1 32 /]},
33 (
34 'FourKeys',
3bd6e3e0 35 'FourKeys_to_TwoKeys',
5ce32fc1 36 '#dummy',
37 'SelfRef',
5efe4c79 38 'ArtistUndirectedMap',
bab77431 39 'ArtistSourceName',
b1fb2c94 40 'ArtistSubclass',
7411204b 41 'Producer',
42 'CD_to_Producer',
5ce32fc1 43 ),
dda9af55 44 qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/,
a7e65bb5 45 qw/Collection CollectionObject TypedObject Owners BooksInLibrary/,
0da8b7da 46 qw/ForceForeign/,
5ce32fc1 47);
a02675cd 48
d6c79cb3 49sub sqlt_deploy_hook {
50 my ($self, $sqlt_schema) = @_;
51
458e0292 52 $sqlt_schema->drop_table('dummy');
d6c79cb3 53}
54
a02675cd 551;