super basic test for dm::sqlt
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / Schema / BindType.pm
1 package # hide from PAUSE 
2     DBICTest::Schema::BindType;
3
4 use base qw/DBICTest::BaseResult/;
5
6 __PACKAGE__->table('bindtype_test');
7
8 __PACKAGE__->add_columns(
9   'id' => {
10     data_type => 'integer',
11     is_auto_increment => 1,
12   },
13   'bytea' => {
14     data_type => 'bytea',
15     is_nullable => 1,
16   },
17   'blob' => {
18     data_type => 'blob',
19     is_nullable => 1,
20   },
21   'clob' => {
22     data_type => 'clob',
23     is_nullable => 1,
24   },
25 );
26
27 __PACKAGE__->set_primary_key('id');
28
29 1;