11f10e93e4c956ae93f665aa2541d4d331beeb0e
[dbsrgits/DBIx-Class.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;