RT45195 various indexer fixes
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICNSTest / RtBug41083 / Schema / Foo.pm
1 package DBICNSTest::RtBug41083::Schema::Foo;
2 use strict;
3 use warnings;
4 use base 'DBIx::Class';
5 __PACKAGE__->load_components('Core');
6 __PACKAGE__->table('foo');
7 __PACKAGE__->add_columns('foo');
8 1;