added test for check_has_column
[catagits/Catalyst-Controller-DBIC-API.git] / t / lib / TestAppCheckHasCol / Model / TestAppDB.pm
1 package TestAppCheckHasCol::Model::TestAppDB;
2
3 use strict;
4 use warnings;
5 use base 'Catalyst::Model::DBIC::Schema';
6
7 use Catalyst::Utils;
8
9 __PACKAGE__->config(
10     schema_class => 'RestTest::Schema',
11     connect_info => [
12         "dbi:SQLite:t/var/DBIxClass.db",
13         undef,
14         undef,
15         {AutoCommit => 1}
16     ]
17 );
18
19 1;