Introducing DBIx::Class::Schema::SanityChecker
[dbsrgits/DBIx-Class.git] / examples / Schema / MyApp / Schema.pm
CommitLineData
a5bd5d88 1package MyApp::Schema;
4a233f30 2
3use warnings;
4use strict;
5
0c337847 6use base qw/DBIx::Class::Schema/;
4bea5048 7__PACKAGE__->load_namespaces;
0c337847 8
12e7015a 9# no point taxing 5.8, but otherwise leave the default: a user may
10# be interested in exploring and seeing what broke
11__PACKAGE__->schema_sanity_checker('')
12 if DBIx::Class::_ENV_::OLD_MRO;
13
0c337847 141;