populate code added
[dbsrgits/DBIx-Class-Fixtures.git] / lib / DBIx / Class / Fixtures / SchemaVersioned.pm
CommitLineData
384c3f0c 1package DBIx::Class::Fixtures::SchemaVersioned;
2
3use strict;
4use warnings;
5
6use base 'DBIx::Class::Schema::Loader';
7
8our $VERSION = 'set-when-loading';
9
10__PACKAGE__->load_components('Schema::Versioned');
11__PACKAGE__->loader_options(
12 # debug => 1,
13 );
14
151;